tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

huge-02.js (397B)


      1 var interestingCaptureNums = [(1 << 14),
      2                              (1 << 15) - 1,
      3                              (1 << 15),
      4                              (1 << 15) + 1,
      5                              (1 << 16)]
      6 
      7 for (let i of interestingCaptureNums) {
      8    print(i);
      9    try {
     10        var source = Array(i).join("(") + "a" + Array(i).join(")");
     11        RegExp(source).exec("a");
     12    } catch {}
     13 }