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

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

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

  • @LiveOverflow
    @LiveOverflow 3 วันที่ผ่านมา +3

    amazing work! Keep going!

  • @abdulx01
    @abdulx01 4 วันที่ผ่านมา +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 3 วันที่ผ่านมา

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

  • @amoh96
    @amoh96 วันที่ผ่านมา

    really good video explain well keep more videos like this

  • @parsh_patel
    @parsh_patel 4 วันที่ผ่านมา +1

    nice explanation

  • @0xrudrapratap
    @0xrudrapratap 5 วันที่ผ่านมา +2

    Good video, great animations

  • @olek-wc6qg
    @olek-wc6qg 3 วันที่ผ่านมา

    Good visibility .Thanks

  • @nodistractionsjustgoandstu1842
    @nodistractionsjustgoandstu1842 4 วันที่ผ่านมา +2

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

  • @RR-bz8bi
    @RR-bz8bi 4 วันที่ผ่านมา +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  4 วันที่ผ่านมา

      alert(1) :)

    • @RR-bz8bi
      @RR-bz8bi 3 วันที่ผ่านมา +1

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