tor-browser

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

content-lengths.json (2627B)


      1 [
      2  {
      3    "input": "Content-Length: 42",
      4    "output": 42
      5  },
      6  {
      7    "input": "Content-Length: 42,42",
      8    "output": 42
      9  },
     10  {
     11    "input": "Content-Length: 42\r\nContent-Length: 42",
     12    "output": 42
     13  },
     14  {
     15    "input": "Content-Length: 42\r\nContent-Length: 42,42",
     16    "output": 42
     17  },
     18  {
     19    "input": "Content-Length: 30",
     20    "output": 30
     21  },
     22  {
     23    "input": "Content-Length: 30,30",
     24    "output": 30
     25  },
     26  {
     27    "input": "Content-Length: 30\r\nContent-Length: 30",
     28    "output": 30
     29  },
     30  {
     31    "input": "Content-Length: 30\r\nContent-Length: 30,30",
     32    "output": 30
     33  },
     34  {
     35    "input": "Content-Length: 30,30\r\nContent-Length: 30,30",
     36    "output": 30
     37  },
     38  {
     39    "input": "Content-Length: 30,30,  30  \r\nContent-Length: 30  ",
     40    "output": 30
     41  },
     42  {
     43    "input": "Content-Length: 30,42\r\nContent-Length: 30",
     44    "output": null
     45  },
     46  {
     47    "input": "Content-Length: 30,42\r\nContent-Length: 30,42",
     48    "output": null
     49  },
     50  {
     51    "input": "Content-Length: 42,30",
     52    "output": null
     53  },
     54  {
     55    "input": "Content-Length: 30,42",
     56    "output": null
     57  },
     58  {
     59    "input": "Content-Length: 42\r\nContent-Length: 30",
     60    "output": null
     61  },
     62  {
     63    "input": "Content-Length: 30\r\nContent-Length: 42",
     64    "output": null
     65  },
     66  {
     67    "input": "Content-Length: 30,",
     68    "output": null
     69  },
     70  {
     71    "input": "Content-Length: ,30",
     72    "output": null
     73  },
     74  {
     75    "input": "Content-Length: 30\r\nContent-Length: \t",
     76    "output": null
     77  },
     78  {
     79    "input": "Content-Length: \r\nContent-Length: 30",
     80    "output": null
     81  },
     82  {
     83    "input": "Content-Length: aaaah\r\nContent-Length: nah",
     84    "output": null
     85  },
     86  {
     87    "input": "Content-Length: aaaah, nah",
     88    "output": null
     89  },
     90  {
     91    "input": "Content-Length: aaaah\r\nContent-Length: aaaah",
     92    "output": 42
     93  },
     94  {
     95    "input": "Content-Length: aaaah, aaaah",
     96    "output": 42
     97  },
     98  {
     99    "input": "Content-Length: aaaah",
    100    "output": 42
    101  },
    102  {
    103    "input": "Content-Length: 42s",
    104    "output": 42
    105  },
    106  {
    107    "input": "Content-Length: 30s",
    108    "output": 42
    109  },
    110  {
    111    "input": "Content-Length: -1",
    112    "output": 42
    113  },
    114  {
    115    "input": "Content-Length: 0x20",
    116    "output": 42
    117  },
    118  {
    119    "input": "Content-Length: 030",
    120    "output": 30
    121  },
    122  {
    123    "input": "Content-Length: 030\r\nContent-Length: 30",
    124    "output": null
    125  },
    126  {
    127    "input": "Content-Length: 030, 30",
    128    "output": null
    129  },
    130  {
    131    "input": "Content-Length: \"30\"",
    132    "output": 42
    133  },
    134  {
    135    "input": "Content-Length:30\r\nContent-Length:,\r\nContent-Length:30",
    136    "output": null
    137  },
    138  {
    139    "input": "Content-Length: ",
    140    "output": 42
    141  }
    142 ]