MXSS Explained: Server Side HTML Sanitizers are Doomed to Fail with this XSS!

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ธ.ค. 2024

ความคิดเห็น • 14

  • @LiveOverflow
    @LiveOverflow 2 หลายเดือนก่อน +7

    amazing work! Keep going!

    • @mrgavyadha
      @mrgavyadha  2 หลายเดือนก่อน

      💪

    • @eingengraou1288
      @eingengraou1288 2 หลายเดือนก่อน

      he's doing tutorials like you, i love how you explain why the bug happens , now your video just shows that even if a site uses front end frameworks with saniters they're still hackable

  • @abdulx01
    @abdulx01 2 หลายเดือนก่อน +1

    Nice.. This is very complex and underrated vulnerability that every researchers avoid. Thanks for sharing, I'm very excited and interested to learn about this mXSS. Finally someone made it. Thank guru. ❤

  • @chiragartani
    @chiragartani 2 หลายเดือนก่อน +1

    Very hard to create videos like this, I can understand. Amazing video, Keep it up brother👌🙏

  • @vibhakarvaddi1858
    @vibhakarvaddi1858 2 หลายเดือนก่อน

    Really amazed by the concept and your explanation anna. Keep going

  • @0xphsi
    @0xphsi 2 หลายเดือนก่อน

    Excellent explanation of a rather complex issue, good stuff!

  • @amoh96
    @amoh96 2 หลายเดือนก่อน +1

    really good video explain well keep more videos like this

  • @nodistractionsjustgoandstu1842
    @nodistractionsjustgoandstu1842 2 หลายเดือนก่อน +3

    I made a challenge on this for IRON CTF 2024 its on oct 5

  • @parsh_patel
    @parsh_patel 2 หลายเดือนก่อน +1

    nice explanation

  • @0xrudrapratap
    @0xrudrapratap 2 หลายเดือนก่อน +2

    Good video, great animations

  • @RR-bz8bi
    @RR-bz8bi 2 หลายเดือนก่อน +1

    function foo(string $value): bool {
    $paterns = ["]+(?:\s+on[a-z]+)"];
    $invalid = 0;
    foreach ($paterns as $patern) {
    if (preg_match("/{$patern}/i", $value)) {
    $invalid++;
    }
    }
    return $invalid == 0;
    }
    $string = '';
    foo($string); // return false;

    • @mrgavyadha
      @mrgavyadha  2 หลายเดือนก่อน

      alert(1) :)

    • @RR-bz8bi
      @RR-bz8bi 2 หลายเดือนก่อน +1

      @@mrgavyadha
      $paterns = [
      "]*>",
      "]+(?:\s+on[a-z]+)",
      // etc.
      ];
      :)