Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 # Fuzzer dictionary targetting HTTP/1.x responses. | |
| 6 | |
| 7 # Entries that are generally useful in headers | |
| 8 ":" | |
| 9 "\x0A" | |
| 10 "\x0D" | |
| 11 "0" | |
| 12 "50" | |
| 13 "500" | |
| 14 # Horizontal whitespace. Matters mostly in status line. | |
| 15 " " | |
| 16 "\x09" | |
| 17 # Header continuation | |
| 18 "\x0D\x0A\x09" | |
| 19 # Used in a lot of individual headers | |
| 20 ";" | |
| 21 "=" | |
| 22 "," | |
| 23 "\"" | |
| 24 "-" | |
| 25 | |
| 26 # Status line components | |
| 27 "HTTP" | |
| 28 "/1.1" | |
| 29 "/1.0" | |
| 30 # More interesting status codes. Leading space so can be inserted into | |
| 31 # other status lines. | |
| 32 " 100" | |
| 33 " 200" | |
| 34 " 206" | |
| 35 " 301" | |
| 36 " 302" | |
| 37 " 303" | |
| 38 " 304" | |
| 39 " 307" | |
| 40 " 308" | |
| 41 " 401" | |
| 42 " 403" | |
| 43 " 404" | |
| 44 " 500" | |
| 45 " 501" | |
| 46 " 403" | |
| 47 | |
| 48 # Full status lines (Some with relevant following headers) | |
| 49 "HTTP/1.1 200 OK\x0A\x0A" | |
| 50 "HTTP/1.1 100 Continue\x0A\x0A" | |
| 51 "HTTP/1.1 401 Unauthorized\x0AWWW-Authenticate: Basic realm=\"Middle-Earth\"\x0A \xA0" | |
| 52 "HTTP/1.1 407 Proxy Authentication Required\x0AProxy-Authenticate: Digest realm= \"Middle-Earth\", nonce=\"aaaaaaaaaa\"\x0A\x0A" | |
| 53 "HTTP/1.0 301 Moved Permanently\x0ALocation: /a\x0A\x0A" | |
| 54 "HTTP/1.1 302 Found\x0ALocation: http://lost/\x0A\x0A" | |
| 55 | |
| 56 # Proxy authentication headers. Note that fuzzers don't support NTLM or | |
| 57 # negotiate. | |
| 58 "WWW-Authenticate:" | |
| 59 "Proxy-Authenticate:" | |
| 60 "Basic" | |
| 61 "Digest" | |
| 62 "realm" | |
| 63 "nonce" | |
| 64 | |
| 65 "Connection:" | |
| 66 "Proxy-Connection:" | |
| 67 "Keep-Alive" | |
| 68 "Close" | |
| 69 "Upgrade" | |
| 70 "\x0AConnection: Keep-Alive" | |
| 71 "\x0AConnection: Close" | |
| 72 "\x0AProxy-Connection: Keep-Alive" | |
| 73 "\x0AProxy-Connection: Close" | |
| 74 | |
| 75 "Content-Length:" | |
| 76 "Transfer-Encoding:" | |
| 77 "chunked" | |
| 78 "\x0AContent-Length: 0" | |
| 79 "\x0AContent-Length: 500" | |
| 80 "\x0ATransfer-Encoding: chunked\x0A\x0A5\x0A12345\x0A0\x0A\x0A" | |
| 81 | |
| 82 "Location:" | |
| 83 "\x0ALocation: http://foo/" | |
| 84 "\x0ALocation: http://bar/" | |
| 85 "\x0ALocation: https://foo/" | |
| 86 "\x0ALocation: https://bar/" | |
| 87 | |
| 88 "Accept-Ranges:" | |
| 89 "bytes" | |
| 90 "\x0AAccept-Ranges: bytes" | |
| 91 | |
| 92 "Content-Range:" | |
| 93 | |
| 94 "Age:" | |
| 95 "\x0AAge: 0" | |
| 96 "\x0AAge: 3153600000" | |
| 97 | |
| 98 "Cache-Control:" | |
| 99 "max-age" | |
| 100 "no-cache" | |
| 101 "no-store" | |
| 102 "must-revalidate" | |
| 103 "\x0ACache-Control: max-age=3153600000" | |
| 104 "\x0ACache-Control: max-age=0" | |
| 105 "\x0ACache-Control: no-cache" | |
| 106 "\x0ACache-Control: no-store" | |
| 107 "\x0ACache-Control: must-revalidate" | |
| 108 | |
| 109 "Content-Disposition:" | |
| 110 "attachment" | |
| 111 "filename" | |
| 112 | |
| 113 "Content-Encoding:" | |
| 114 "gzip" | |
| 115 "deflate" | |
| 116 "sdch" | |
| 117 "br" | |
| 118 "\x0AContent-Encoding: gzip" | |
| 119 "\x0AContent-Encoding: deflate" | |
| 120 "\x0AContent-Encoding: sdch" | |
| 121 "\x0AContent-Encoding: br" | |
| 122 | |
| 123 "Date:" | |
| 124 "Fri, 01 Apr, 2050 14:14:14 GMT" | |
| 125 "Mon, 28 Mar, 2016 04:04:04 GMT" | |
| 126 "\x0ADate: Fri, 01 Apr, 2050 14:14:14 GMT" | |
| 127 "\x0ADate: Mon, 28 Mar, 2016 04:04:04 GMT" | |
| 128 | |
| 129 "Last-Modified:" | |
| 130 "\x0ALast-Modified: Fri, 01 Apr, 2050 14:14:14 GMT" | |
| 131 "\x0ALast-Modified: Mon, 28 Mar, 2016 04:04:04 GMT" | |
| 132 | |
| 133 "Expires:" | |
| 134 "\x0AExpires: Fri, 01 Apr, 2050 14:14:14 GMT" | |
| 135 "\x0AExpires: Mon, 28 Mar, 2016 04:04:04 GMT" | |
| 136 | |
| 137 "Set-Cookie:" | |
| 138 "Expires" | |
| 139 "Max-Age" | |
| 140 "Domain" | |
| 141 "Path" | |
| 142 "Secure" | |
| 143 "HttpOnly" | |
| 144 "Priority" | |
| 145 "Low" | |
| 146 "Medium" | |
| 147 "High" | |
| 148 "SameSite" | |
| 149 "Strict" | |
| 150 "Lax" | |
| 151 "\x0ASet-Cookie: foo=bar" | |
| 152 "\x0ASet-Cookie: foo2=bar2;HttpOnly;Priority=Low;SameSite=Strict;Path=/" | |
| 153 "\x0ASet-Cookie: foo=chicken;SameSite=Lax" | |
| 154 | |
| 155 "Strict-Transport-Security:" | |
| 156 "includeSubDomains" | |
| 157 | |
| 158 "Vary:" | |
| 159 "\x0AVary: Cookie" | |
| 160 "\x0AVary: Age" | |
| 161 | |
| 162 "ETag:" | |
| 163 "\x0AETag: jumboshrimp" | |
| 164 | |
| 165 | |
| 166 # Dictionary elements below have been generated automatically. | |
|
eroman
2016/07/06 19:37:30
General design comments:
(1) Rather than name the
mmoroz
2016/07/07 08:43:44
Good points, agree on both! Thanks for the suggest
| |
| 167 "all" | |
| 168 "code" | |
| 169 "maximum" | |
| 170 "Transfer-Encoding" | |
| 171 "D.," | |
| 172 "results" | |
| 173 "follow" | |
| 174 "(LZW)." | |
| 175 "provided." | |
| 176 "(which" | |
| 177 "ISDN" | |
| 178 ""TE"" | |
| 179 "LF>" | |
| 180 "FORCE" | |
| 181 "calculate" | |
| 182 ""IETF" | |
| 183 "UNIX," | |
| 184 "ARPA" | |
| 185 ""OPTIONAL"" | |
| 186 "environment" | |
| 187 "Host" | |
| 188 "program" | |
| 189 "USENET" | |
| 190 "TEXT" | |
| 191 "Not" | |
| 192 "Nov" | |
| 193 "include" | |
| 194 "resources" | |
| 195 "CONNECT" | |
| 196 "digit" | |
| 197 "supported" | |
| 198 "string" | |
| 199 "returning" | |
| 200 "ALL" | |
| 201 "HTTP/1.1;" | |
| 202 "SP," | |
| 203 "SP." | |
| 204 "entries" | |
| 205 "HTTP/1.1," | |
| 206 "HTTP/1.1." | |
| 207 "difference" | |
| 208 "(URI):" | |
| 209 "--" | |
| 210 "[CRLF]" | |
| 211 "EXPRESS" | |
| 212 "list" | |
| 213 "HTTP/1.0"," | |
| 214 "(RFC" | |
| 215 "large" | |
| 216 "ONLY" | |
| 217 "Tag" | |
| 218 "(LWS" | |
| 219 "enclosing" | |
| 220 ""SHOULD"," | |
| 221 "(URL)"," | |
| 222 ""A".."Z">" | |
| 223 "unexpected" | |
| 224 "GET)" | |
| 225 ""HEAD"" | |
| 226 "direct" | |
| 227 "Failed" | |
| 228 "second" | |
| 229 "Version" | |
| 230 ""A"" | |
| 231 "allowed." | |
| 232 "pass" | |
| 233 "GET," | |
| 234 "tag." | |
| 235 "implemented" | |
| 236 ""HTTP/1.0"" | |
| 237 "INFRINGE" | |
| 238 "errors" | |
| 239 "ISO-8859-4," | |
| 240 "appear" | |
| 241 "opaque" | |
| 242 "section" | |
| 243 "CPU" | |
| 244 "current" | |
| 245 "waiting" | |
| 246 "version" | |
| 247 "above" | |
| 248 "TTL" | |
| 249 "shared" | |
| 250 "CRLF)" | |
| 251 "public" | |
| 252 "FTP" | |
| 253 "NNTP." | |
| 254 "WWW-" | |
| 255 "never" | |
| 256 "equals" | |
| 257 ""HTTP/1.1" | |
| 258 "reported" | |
| 259 "objects" | |
| 260 "address" | |
| 261 "active" | |
| 262 "path" | |
| 263 "[" | |
| 264 ""POST"" | |
| 265 "HTTP." | |
| 266 "change" | |
| 267 "MA" | |
| 268 ""AS" | |
| 269 "broken" | |
| 270 "BACK)" | |
| 271 "NOT" | |
| 272 "NNTP" | |
| 273 "named" | |
| 274 "useful" | |
| 275 "secure" | |
| 276 "family" | |
| 277 "case." | |
| 278 "detected." | |
| 279 ""HTTP"" | |
| 280 "private" | |
| 281 "CERN/3.0" | |
| 282 "CTE" | |
| 283 "(CTE)" | |
| 284 "Too" | |
| 285 "CTL" | |
| 286 "PUT," | |
| 287 "user-agent" | |
| 288 "PUT)" | |
| 289 "byte" | |
| 290 "select" | |
| 291 "use" | |
| 292 "TASK" | |
| 293 "from" | |
| 294 "exception." | |
| 295 "working" | |
| 296 "to" | |
| 297 "value." | |
| 298 "WARRANTIES" | |
| 299 "two" | |
| 300 "URI;" | |
| 301 "User-Agent" | |
| 302 "few" | |
| 303 "--THIS_STRING_SEPARATES" | |
| 304 "POST," | |
| 305 "call" | |
| 306 "6" | |
| 307 "MUST," | |
| 308 "scope" | |
| 309 "type" | |
| 310 "authorization" | |
| 311 "more" | |
| 312 "ISO-8859-9," | |
| 313 "(GMT)," | |
| 314 "(TE)" | |
| 315 "name." | |
| 316 "initial" | |
| 317 "Required" | |
| 318 "RFC-850" | |
| 319 "warn" | |
| 320 "bytes," | |
| 321 "Found" | |
| 322 "cases" | |
| 323 "MHTML" | |
| 324 "name:" | |
| 325 "must" | |
| 326 "parse" | |
| 327 "lowercase" | |
| 328 "MHTML," | |
| 329 "RIGHTS" | |
| 330 "this" | |
| 331 "NTP" | |
| 332 "work" | |
| 333 "--THIS_STRING_SEPARATES--" | |
| 334 "Syntax" | |
| 335 "paragraph" | |
| 336 "can" | |
| 337 "tracing" | |
| 338 "following" | |
| 339 ""I" | |
| 340 "closing" | |
| 341 "modifier" | |
| 342 "root" | |
| 343 "example" | |
| 344 "requested," | |
| 345 "J.," | |
| 346 "control" | |
| 347 "type." | |
| 348 "reserved" | |
| 349 "links" | |
| 350 "process" | |
| 351 "attribute" | |
| 352 "allowed" | |
| 353 "high" | |
| 354 "currency" | |
| 355 "numbers" | |
| 356 "want" | |
| 357 "type:" | |
| 358 "native" | |
| 359 "LF" | |
| 360 "class," | |
| 361 "end" | |
| 362 "Missing" | |
| 363 "HTTP-" | |
| 364 "HTTP," | |
| 365 "charset" | |
| 366 "1" | |
| 367 "line." | |
| 368 "2*N" | |
| 369 "H." | |
| 370 "1XX" | |
| 371 "WARRANTIES," | |
| 372 "HTTP:" | |
| 373 "A" | |
| 374 "badly" | |
| 375 "HEAD" | |
| 376 "may" | |
| 377 "insecure" | |
| 378 "after" | |
| 379 "variant" | |
| 380 "different" | |
| 381 "wrong" | |
| 382 "[SP" | |
| 383 "ANSI," | |
| 384 "date" | |
| 385 "such" | |
| 386 "data" | |
| 387 "parallel" | |
| 388 "repeat" | |
| 389 "a" | |
| 390 "FTP," | |
| 391 "All" | |
| 392 "short" | |
| 393 ""GET"" | |
| 394 "Y." | |
| 395 "UA" | |
| 396 "(2**N)," | |
| 397 "element" | |
| 398 "so" | |
| 399 "cases." | |
| 400 "File" | |
| 401 "(LWS)" | |
| 402 ""DEFLATE" | |
| 403 "order" | |
| 404 ""SHOULD" | |
| 405 "don\'t" | |
| 406 "MIC" | |
| 407 "move" | |
| 408 "vary" | |
| 409 "satisfied" | |
| 410 "CD-ROM," | |
| 411 "ended" | |
| 412 "HTTP-WG." | |
| 413 "LINK," | |
| 414 "pointer" | |
| 415 "its" | |
| 416 "digest" | |
| 417 "before" | |
| 418 "HTML" | |
| 419 "(OK)" | |
| 420 "using:" | |
| 421 "MAY," | |
| 422 "fix" | |
| 423 "ISO-3166" | |
| 424 "actually" | |
| 425 "407" | |
| 426 "(GNU" | |
| 427 ""HTTP/1.1"," | |
| 428 "P.," | |
| 429 "401" | |
| 430 "MERCHANTABILITY" | |
| 431 "DNS." | |
| 432 "into" | |
| 433 ""HTTP" | |
| 434 "it." | |
| 435 "it," | |
| 436 "return" | |
| 437 "combination" | |
| 438 "URL" | |
| 439 "URI" | |
| 440 "number" | |
| 441 "Bad" | |
| 442 "not" | |
| 443 "However," | |
| 444 "SSL" | |
| 445 "name" | |
| 446 "always" | |
| 447 "decimal" | |
| 448 "expectation." | |
| 449 "did" | |
| 450 "ISO-639" | |
| 451 "]URI," | |
| 452 "found" | |
| 453 "trailer" | |
| 454 "mean" | |
| 455 "breakdown" | |
| 456 "domain" | |
| 457 "From" | |
| 458 "UTC" | |
| 459 "(via" | |
| 460 "(URI)" | |
| 461 "UNLINK" | |
| 462 "used" | |
| 463 "expect" | |
| 464 "exceeded" | |
| 465 "(MIC)" | |
| 466 "event" | |
| 467 "out" | |
| 468 "is:" | |
| 469 "by" | |
| 470 "E." | |
| 471 "space" | |
| 472 ""MUST/MAY/SHOULD"" | |
| 473 "REQUIRED" | |
| 474 "ALPHA" | |
| 475 "HTTP/2.4" | |
| 476 "4DIGIT" | |
| 477 "increase" | |
| 478 "L." | |
| 479 "time." | |
| 480 "PATCH," | |
| 481 "supports" | |
| 482 "2DIGIT" | |
| 483 "K.," | |
| 484 "(A," | |
| 485 "This" | |
| 486 "free" | |
| 487 ""B"" | |
| 488 "RFC" | |
| 489 "base" | |
| 490 "proxy" | |
| 491 "IMPLIED," | |
| 492 "POST" | |
| 493 "received." | |
| 494 "generate" | |
| 495 "text/plain" | |
| 496 "ISO-8859-7," | |
| 497 ""HTTP/1.1"" | |
| 498 "Partial" | |
| 499 "could" | |
| 500 "transition" | |
| 501 "DISCLAIMS" | |
| 502 "times" | |
| 503 "filter" | |
| 504 "HTML"," | |
| 505 "length" | |
| 506 "HEAD." | |
| 507 "HEAD," | |
| 508 "S.," | |
| 509 "first" | |
| 510 "origin" | |
| 511 ""E"" | |
| 512 "already" | |
| 513 "UPALPHA" | |
| 514 "3DIGIT" | |
| 515 "*" | |
| 516 "Cache" | |
| 517 "Please" | |
| 518 "token." | |
| 519 "one" | |
| 520 "CHAR" | |
| 521 "ISI" | |
| 522 "another" | |
| 523 "FITNESS" | |
| 524 "message" | |
| 525 "CSS1," | |
| 526 "open" | |
| 527 "size" | |
| 528 "doesn\'t" | |
| 529 """ | |
| 530 "script" | |
| 531 "unknown" | |
| 532 "top" | |
| 533 "header)" | |
| 534 "system" | |
| 535 "construct" | |
| 536 "image/gif" | |
| 537 "2" | |
| 538 "ignored." | |
| 539 "listed" | |
| 540 "Date" | |
| 541 "LOALPHA" | |
| 542 "scheme" | |
| 543 "final" | |
| 544 "store" | |
| 545 "too" | |
| 546 "M." | |
| 547 "Success" | |
| 548 "that" | |
| 549 "completed" | |
| 550 "OPTIONAL;" | |
| 551 "task" | |
| 552 "tokens" | |
| 553 "R" | |
| 554 "pragma" | |
| 555 "(IANA" | |
| 556 "WAIS" | |
| 557 "F.," | |
| 558 "than" | |
| 559 "(A" | |
| 560 "K." | |
| 561 "target" | |
| 562 "16" | |
| 563 "require" | |
| 564 "Only" | |
| 565 "WWW-Authenticate" | |
| 566 "HTTP/2.13," | |
| 567 "headers" | |
| 568 "See" | |
| 569 "GMT." | |
| 570 "HTTP/2.0," | |
| 571 "were" | |
| 572 "1)" | |
| 573 "IS"" | |
| 574 "stale" | |
| 575 "1*8ALPHA" | |
| 576 "are" | |
| 577 "and" | |
| 578 "IRC/6.9," | |
| 579 "false" | |
| 580 "URL)." | |
| 581 "turned" | |
| 582 "ANSI" | |
| 583 "B" | |
| 584 "(IANA)" | |
| 585 "(LWS)." | |
| 586 "have" | |
| 587 "MIME," | |
| 588 "need" | |
| 589 "HTTP/1.1.)" | |
| 590 "null" | |
| 591 "any" | |
| 592 "contents" | |
| 593 "conversion" | |
| 594 "data)" | |
| 595 "(LZ77)" | |
| 596 "(MIME" | |
| 597 "mechanism" | |
| 598 "internal" | |
| 599 "(C)" | |
| 600 "take" | |
| 601 "which" | |
| 602 "With" | |
| 603 "UCI" | |
| 604 "HTTP/0.9," | |
| 605 "content-" | |
| 606 "200" | |
| 607 "begin" | |
| 608 "headers)" | |
| 609 "unless" | |
| 610 "TCP/IP" | |
| 611 "Content-Disposition" | |
| 612 "206" | |
| 613 "buffer" | |
| 614 "object" | |
| 615 ""MUST"," | |
| 616 "regular" | |
| 617 "letter" | |
| 618 "entry" | |
| 619 "The" | |
| 620 "]" | |
| 621 "the" | |
| 622 "D." | |
| 623 "(STD" | |
| 624 "incompatible" | |
| 625 "L.," | |
| 626 "(URL)" | |
| 627 "left" | |
| 628 "+" | |
| 629 ""MIME" | |
| 630 "Note:" | |
| 631 "particularly" | |
| 632 "WA" | |
| 633 "text" | |
| 634 "labels" | |
| 635 ""C"" | |
| 636 "Authentication" | |
| 637 "Unrecognized" | |
| 638 "CRLF." | |
| 639 "PARTICULAR" | |
| 640 "CRLF," | |
| 641 "SP" | |
| 642 "find" | |
| 643 "MUST" | |
| 644 "true," | |
| 645 "cache." | |
| 646 "upgrade" | |
| 647 "cache)" | |
| 648 "implementation" | |
| 649 "(" | |
| 650 "[RFC" | |
| 651 "cache" | |
| 652 "3" | |
| 653 "should" | |
| 654 "failed" | |
| 655 "only" | |
| 656 "unable" | |
| 657 "LDAP)" | |
| 658 "USA" | |
| 659 "US-ASCII" | |
| 660 "(UA)" | |
| 661 "get" | |
| 662 "E.," | |
| 663 "HEREIN" | |
| 664 ""HTTP"." | |
| 665 "cannot" | |
| 666 "new" | |
| 667 "THE" | |
| 668 "BNF" | |
| 669 "DIGIT," | |
| 670 "closure" | |
| 671 "PUT" | |
| 672 "0)" | |
| 673 "resource" | |
| 674 "A.," | |
| 675 "W." | |
| 676 "Content-Type:" | |
| 677 "ISO-8859." | |
| 678 "calling" | |
| 679 "J." | |
| 680 "INCLUDING" | |
| 681 "common" | |
| 682 "INTERNET" | |
| 683 "release" | |
| 684 "ISI/RR-98-463," | |
| 685 ""CONNECT"" | |
| 686 "where" | |
| 687 "set" | |
| 688 "IANA" | |
| 689 "For" | |
| 690 ""F"" | |
| 691 "configured" | |
| 692 "C" | |
| 693 "this," | |
| 694 "multipart" | |
| 695 "close" | |
| 696 "end." | |
| 697 "detect" | |
| 698 "GET" | |
| 699 "WWW"," | |
| 700 "1*DIGIT" | |
| 701 "BUT" | |
| 702 "MIT" | |
| 703 "outside" | |
| 704 "Proxy-Authorization" | |
| 705 "closed" | |
| 706 "between" | |
| 707 "probably" | |
| 708 "boundary" | |
| 709 "reading" | |
| 710 ""SHALL" | |
| 711 ""RECOMMENDED"," | |
| 712 "available" | |
| 713 "we" | |
| 714 "FOR" | |
| 715 "missing" | |
| 716 "importance" | |
| 717 "screen" | |
| 718 "connection." | |
| 719 "ISO-8859-1" | |
| 720 "UNIX" | |
| 721 "STD" | |
| 722 "key" | |
| 723 "(MIME)" | |
| 724 "P." | |
| 725 ""HTTP/1.1"." | |
| 726 "HTTP/1.0)," | |
| 727 "AND" | |
| 728 "received" | |
| 729 "WWW" | |
| 730 "TRACE" | |
| 731 ""MAY"," | |
| 732 "many" | |
| 733 "*TEXT" | |
| 734 "Unsupported" | |
| 735 "Rules" | |
| 736 "connection" | |
| 737 "Unicode" | |
| 738 "*OCTET" | |
| 739 "exceeds" | |
| 740 "(URN)" | |
| 741 "safely" | |
| 742 "finds" | |
| 743 "can\'t" | |
| 744 "WARRANTY" | |
| 745 "ISO-8859-8," | |
| 746 "Content-Length" | |
| 747 "consume" | |
| 748 "stream" | |
| 749 "simple" | |
| 750 "header" | |
| 751 "DNS)" | |
| 752 "colon" | |
| 753 "adding" | |
| 754 "spans" | |
| 755 "1*HEX" | |
| 756 "table" | |
| 757 "allocated" | |
| 758 "BCP" | |
| 759 "application/pdf" | |
| 760 "LWS:" | |
| 761 ""REQUIRED"," | |
| 762 "Wed," | |
| 763 "C." | |
| 764 "C," | |
| 765 "Proxy-Authenticate" | |
| 766 "encryption" | |
| 767 "create" | |
| 768 "(MHTML)"," | |
| 769 "been" | |
| 770 "." | |
| 771 "HTTP/12.3." | |
| 772 ""OPTIONS"" | |
| 773 ""PUT"" | |
| 774 "context." | |
| 775 "LWS," | |
| 776 "basic" | |
| 777 "expected" | |
| 778 "prototype" | |
| 779 "GMT," | |
| 780 "empty" | |
| 781 ">" | |
| 782 "URL." | |
| 783 "PNG,"" | |
| 784 ""D"" | |
| 785 "CA" | |
| 786 "HEX" | |
| 787 "N" | |
| 788 "0*3DIGIT" | |
| 789 ""W/"" | |
| 790 "CR" | |
| 791 ""DELETE"" | |
| 792 "unnecessarily" | |
| 793 "case" | |
| 794 "exception" | |
| 795 "save" | |
| 796 "(HTTP)" | |
| 797 "value" | |
| 798 "Assigned" | |
| 799 "while" | |
| 800 ""GZIP" | |
| 801 ""SHALL"," | |
| 802 "error" | |
| 803 ""GMT"" | |
| 804 ""TRACE"" | |
| 805 "resident" | |
| 806 "is" | |
| 807 "thus" | |
| 808 "it" | |
| 809 "encountered" | |
| 810 "Content" | |
| 811 "MIME" | |
| 812 "in" | |
| 813 "SIGCOMM" | |
| 814 "You" | |
| 815 "if" | |
| 816 "result" | |
| 817 "binary" | |
| 818 "containing" | |
| 819 ""A" | |
| 820 ")" | |
| 821 "CREATE" | |
| 822 "expired" | |
| 823 "1DIGIT" | |
| 824 "same" | |
| 825 "OPTIONS" | |
| 826 "read" | |
| 827 "BNF," | |
| 828 "unrecognized" | |
| 829 "units" | |
| 830 "UST" | |
| 831 "status" | |
| 832 ""%" | |
| 833 "extended" | |
| 834 "http" | |
| 835 "context" | |
| 836 "I" | |
| 837 "IP" | |
| 838 "(O)." | |
| 839 "allocation" | |
| 840 "running" | |
| 841 "*LWS" | |
| 842 "user" | |
| 843 "SMTP" | |
| 844 "stack" | |
| 845 "tracking" | |
| 846 "IETF" | |
| 847 "CR." | |
| 848 "failing" | |
| 849 "ANY" | |
| 850 "patterns" | |
| 851 "M.," | |
| 852 "Names" | |
| 853 "In" | |
| 854 "position" | |
| 855 "model" | |
| 856 "audio" | |
| 857 "If" | |
| 858 "US-ASCII." | |
| 859 "MAY" | |
| 860 "THAT" | |
| 861 "being" | |
| 862 "(OK)." | |
| 863 "actions" | |
| 864 "invalid" | |
| 865 "HTTP/1.0)" | |
| 866 "CRC." | |
| 867 "previous" | |
| 868 "tables" | |
| 869 "TO" | |
| 870 "<US-ASCII" | |
| 871 "character" | |
| 872 "source" | |
| 873 "ISO-8859-2," | |
| 874 "valid" | |
| 875 "location" | |
| 876 "HTTP/1.0" | |
| 877 "HTTP/1.1" | |
| 878 "size," | |
| 879 "has" | |
| 880 "match" | |
| 881 "build" | |
| 882 "URI." | |
| 883 "tests" | |
| 884 "format" | |
| 885 "transfer-encoding" | |
| 886 "H.," | |
| 887 "T" | |
| 888 "using" | |
| 889 "LIMITED" | |
| 890 "OK" | |
| 891 "success" | |
| 892 "text/html" | |
| 893 "ISO-8859-5," | |
| 894 "B," | |
| 895 "signal" | |
| 896 "MIME:" | |
| 897 "(HTCPCP/1.0)"," | |
| 898 "server" | |
| 899 "discarded" | |
| 900 "true" | |
| 901 "OF" | |
| 902 "output" | |
| 903 "page" | |
| 904 "S." | |
| 905 "right" | |
| 906 "old" | |
| 907 "sequence" | |
| 908 "uppercase" | |
| 909 "B.," | |
| 910 "some" | |
| 911 "back" | |
| 912 "HT" | |
| 913 "Last-Modified" | |
| 914 "growth" | |
| 915 "equivalent" | |
| 916 "specified" | |
| 917 "multiple" | |
| 918 "H.F.," | |
| 919 "HTTP/1.0." | |
| 920 "(BNF)" | |
| 921 "happens" | |
| 922 "ignore" | |
| 923 "PUT." | |
| 924 "INDEX." | |
| 925 "trace" | |
| 926 "for" | |
| 927 "avoid" | |
| 928 "CR," | |
| 929 "does" | |
| 930 "Authorization" | |
| 931 "assuming" | |
| 932 "be" | |
| 933 "run" | |
| 934 "GET." | |
| 935 "deleted" | |
| 936 "302" | |
| 937 "X3.4-1986" | |
| 938 "<URL:" | |
| 939 "O" | |
| 940 "ISO-8859-1." | |
| 941 "last-modified" | |
| 942 "host" | |
| 943 "HTTP/1.0," | |
| 944 "LWS>" | |
| 945 "INFORMATION" | |
| 946 "X3.4-1986," | |
| 947 "properties" | |
| 948 "ALPHA," | |
| 949 "Location" | |
| 950 "on" | |
| 951 "DIGIT" | |
| 952 "ENGINEERING" | |
| 953 "actual" | |
| 954 "extension" | |
| 955 "of" | |
| 956 "R.," | |
| 957 ""UTF-8," | |
| 958 "*<TEXT," | |
| 959 "OR" | |
| 960 "range" | |
| 961 "3ALPHA" | |
| 962 "URI," | |
| 963 "positive" | |
| 964 "Message" | |
| 965 "DELETE" | |
| 966 "content-type" | |
| 967 "or" | |
| 968 "UC" | |
| 969 "No" | |
| 970 "ISO-" | |
| 971 "image" | |
| 972 "ACM" | |
| 973 "HEX"" | |
| 974 "URL," | |
| 975 "because" | |
| 976 "ISO-8859-6," | |
| 977 "T.," | |
| 978 "operator" | |
| 979 "T/TCP" | |
| 980 "mark" | |
| 981 "file." | |
| 982 "area" | |
| 983 "GET"" | |
| 984 "transfer" | |
| 985 "support" | |
| 986 "there" | |
| 987 "long" | |
| 988 "class" | |
| 989 "start" | |
| 990 "HT." | |
| 991 "forward" | |
| 992 "was" | |
| 993 "function" | |
| 994 "HT," | |
| 995 "N." | |
| 996 "HTTP/1.1"," | |
| 997 "memory" | |
| 998 "OCTET" | |
| 999 "but" | |
| 1000 "failure" | |
| 1001 "TE:" | |
| 1002 "IMPLIED" | |
| 1003 "CRLF" | |
| 1004 "DNS" | |
| 1005 "Error" | |
| 1006 ""ZLIB" | |
| 1007 "line" | |
| 1008 "trying" | |
| 1009 "with" | |
| 1010 "GMT" | |
| 1011 "count" | |
| 1012 "algorithm" | |
| 1013 "default" | |
| 1014 "B." | |
| 1015 "ISO-8859-1," | |
| 1016 "up" | |
| 1017 "ISO-8859-1)" | |
| 1018 "SHOULD" | |
| 1019 "PURPOSE." | |
| 1020 "limit" | |
| 1021 "used." | |
| 1022 "WILL" | |
| 1023 "DEL" | |
| 1024 "define" | |
| 1025 "called" | |
| 1026 "delete" | |
| 1027 "DELETE," | |
| 1028 "storing" | |
| 1029 "USE" | |
| 1030 "image/jpeg" | |
| 1031 "defined" | |
| 1032 "LWS" | |
| 1033 "combining" | |
| 1034 "unsafe" | |
| 1035 "an" | |
| 1036 "To" | |
| 1037 "as" | |
| 1038 "warning" | |
| 1039 "exist" | |
| 1040 "at" | |
| 1041 "file" | |
| 1042 "NOT"" | |
| 1043 "NOT," | |
| 1044 "W3C/MIT" | |
| 1045 "ISO-8859-1:1987." | |
| 1046 "SHTTP/1.3," | |
| 1047 "no" | |
| 1048 "when" | |
| 1049 "A," | |
| 1050 "virtual" | |
| 1051 "A." | |
| 1052 "details." | |
| 1053 "application" | |
| 1054 "other" | |
| 1055 "OPTIONAL" | |
| 1056 "Proxy" | |
| 1057 "LF," | |
| 1058 "test" | |
| 1059 "MD5" | |
| 1060 "you" | |
| 1061 "TE" | |
| 1062 "ISO-8859-3," | |
| 1063 "requested" | |
| 1064 "elements" | |
| 1065 "C)" | |
| 1066 "symbol" | |
| 1067 "T." | |
| 1068 "code)" | |
| 1069 "variable" | |
| 1070 "SOCIETY" | |
| 1071 ""MUST" | |
| 1072 "TCP" | |
| 1073 "ISO-10646"," | |
| 1074 "NOT"," | |
| 1075 "R." | |
| 1076 "lead" | |
| 1077 "audio/basic" | |
| 1078 "IANA." | |
| 1079 ""WAIS" | |
| 1080 "persistent" | |
| 1081 "Its" | |
| 1082 "As" | |
| 1083 "time" | |
| 1084 "failures" | |
| 1085 ""ISO-8859-1"" | |
| 1086 "once" | |
| OLD | NEW |