Http11Probe

Parsed Basic β€” Cookie Handling

Test ID COOK-PARSED-BASIC
Category Cookies
Scored No
RFC Level N/A
Expected 2xx with foo=bar in body

What it sends

Basic cookie parsed correctly by framework.

GET /cookie HTTP/1.1\r\n
Host: localhost:8080\r\n
Cookie: foo=bar\r\n
\r\n

Why it matters

Tests that the framework's cookie parser correctly extracts a simple name=value pair β€” the most basic cookie parsing operation.

Verdicts

  • Pass β€” 2xx and body contains foo=bar
  • Warn β€” 404 (endpoint not available)
  • Fail β€” 500 or mangled output

Sources

Http11Probe β€” HTTP/1.1 compliance & smuggling testerSource on GitHub