The Yellow Room

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024

Комментарии • 39

  • @fasterthanlime
    @fasterthanlime  Год назад +283

    My wife watched this and went "I understood everything, are you sure you're okay? Usually your explanations take 40 minutes and have vscode open", which I'm going to take as a compliment, I guess.

    • @technologyondemand4538
      @technologyondemand4538 Год назад +1

      :p

    • @kirklandday
      @kirklandday Год назад +25

      I dont know what you say most of the time but i dig it

    • @fasterthanlime
      @fasterthanlime  Год назад +21

      ​@@kirklandday that's the spirit!

    • @patryk6769
      @patryk6769 Год назад +1

      What a disgrace. Our wives can never understand what we're doing man! Think better next time, I'm disappointed in you.

    • @QmVuamFtaW4
      @QmVuamFtaW4 Год назад

      s/vscode/nvim/g

  • @liamkearn
    @liamkearn Год назад +27

    From rust to techy Tom Scott, I like it :)

    • @fasterthanlime
      @fasterthanlime  Год назад +9

      One could argue that techy Tom Scott is.. Tom Scott. I'll take the compliment but it's probably far from being deserved (yet!)

  • @ozanmuyes
    @ozanmuyes Год назад +12

    "Uhhh. Fiiiine." 😀💯

  • @NoBoilerplate
    @NoBoilerplate Год назад +2

    Came for the cool story, commented because of the ragtime outtro! (that's YOU playing right Amos? 😀)

    • @fasterthanlime
      @fasterthanlime  Год назад +1

      That is in fact me! You can tell it’s recorded with a mic, rather than recording the output of the keyboard, because you can hear the keys 😌 it’s Lo-fi on purpose

    • @NoBoilerplate
      @NoBoilerplate Год назад

      @@fasterthanlime I noticed that too! A great vibe

  • @joranmulderij
    @joranmulderij Год назад +38

    If someone ever asks “so what is hacking then?” I will send them this video.

  • @freax13
    @freax13 Год назад +35

    The vulnerability presented in the video is a parser differential vulnerability. A parser differential vulnerability can occur whenever two parsers parse the same input in slightly different ways. URL parsers have been under a lot of scrutiny in the last few years because of that.

  • @CallousCoder
    @CallousCoder Год назад

    Yeah regex for direct e-mails are a pain! Especially since top domain levels have grown significantly the last few years.

  • @max_ishere
    @max_ishere Год назад +1

    This is so interesting that I can't use it as my "noise cancelation" + mind wandering stop device since as soon as I actually listen I get something cool

  • @nasso_
    @nasso_ Год назад +9

    i guess the lesson here is: never use the internet

  • @efferington
    @efferington Год назад +6

    short and sweet!

  • @dorktales254
    @dorktales254 Год назад +2

    I just accepted many years ago that my French will never be perfect

  • @eheh5748
    @eheh5748 Год назад +2

    Je viens juste d'apprendre que tu étais suisse-français et je dois dire que je suis super jaloux de ton accent xD.
    J'adore tes vidéos elles m’inspire énormément !!!

  • @flippert0
    @flippert0 8 месяцев назад

    Is that by chance a reference to the "Mystery of the Yellow Room" ("Le mystère de la chambre jaune" by Gaston Leroux). That book is a "locked-room" crime novel, depecting a seemingly impossible to execute crime.

  • @holly_hacker
    @holly_hacker Год назад +9

    I don't think "your system is as secure as your least secure component" is very accurate. You can design a security model where your security components are "in series" rather than "in parallel", meaning you need to defeat each step to get to the next one. It is just very hard to not have parallel components that can be used to bypass your secure scheme. So basically "security in depth".

    • @31redorange08
      @31redorange08 Год назад +4

      It depends on how you define component. If you think of a chain of components as one logical component, then it still holds true.

  • @Whatthetrash
    @Whatthetrash Год назад +3

    Very cool! :)

  • @theondono
    @theondono Год назад +13

    Is there something you can use regex for that won’t become a big vulnerability? 😂

    • @fasterthanlime
      @fasterthanlime  Год назад +5

      I forgot to mention it in the video, but hilariously, the Matrix docs say to... still use regexps, but they changed it to match only non-@ characters until the @ (which doesn't prevent someone from still messing up their config): matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#allowed_local_3pids

  • @Gamemaster2b
    @Gamemaster2b 2 месяца назад

    hawa Wakamba wamefika Faransa

  • @etterathe
    @etterathe Год назад +2

    Wow ur french sounds good my man, do you know this language? Are u some sort of polyglot?

    • @dorktales254
      @dorktales254 Год назад

      He's French

    • @etterathe
      @etterathe Год назад +1

      @@dorktales254 Strange, I thought he's from India

    • @fasterthanlime
      @fasterthanlime  Год назад +9

      lol. I'm Swiss-French.

    • @etterathe
      @etterathe Год назад +2

      @@fasterthanlime lol that explains a lot, I must misinterpreted something from previous videos

    • @coscorrodrift
      @coscorrodrift Год назад

      @@etterathe i thought he was from Portugal somehow

  • @bytefu
    @bytefu Год назад +7

    Great video. But I disagree with "it's hard to blame them" because of the following reasons:
    1. Everybody knows, that if you try to solve a problem with regular expressions, you now have two problems.
    2. Entry points to a security perimeter should be the places that get the most of developers' attention.
    3. Doesn't matter how complicated the RFC is, you have to implement it yourself or use someone else's implementation, and either has to be thoroughly unit-tested. If there is an RFC and you don't follow it, you are asking for trouble, and Murphy's laws guarantee that you get some.

    • @samiurkhan
      @samiurkhan Год назад +1

      2++. This is a government service app so it is strange the startup didn't put most of their time there.
      It's probably better to say everyone is at fault and can learn something from this. Sign-ups should be a strict set of strings that the government should be maintaining anyway. They are already paying the cost of paperwork, documentation to maintain employment. This would add just one more step to the process of maintaining employees.

    • @31redorange08
      @31redorange08 Год назад

      So you never use regex?

    • @bytefu
      @bytefu Год назад +1

      ​@@31redorange08 Sometimes I use them in the shell or in short one-off programs to generate code based on some repetitive input, but that's about it. If I need to parse something, I would rather use the "nom" crate or write a recursive-descent parser by hand - either way, the parsing code will be well-structured and easy to understand, with all that fancy stuff like self-explanatory variable names, which regexes do not have.