http.pat 1.3 KB

123456789101112131415161718192021222324252627
  1. # HTTP - HyperText Transfer Protocol - RFC 2616
  2. # Pattern attributes: great slow notsofast superset
  3. # Protocol groups: document_retrieval ietf_draft_standard
  4. # Wiki: http://protocolinfo.org/wiki/HTTP
  5. #
  6. # Usually runs on port 80
  7. #
  8. # This pattern has been tested and is believed to work well.
  9. #
  10. # this intentionally catches the response from the server rather than
  11. # the request so that other protocols which use http (like kazaa) can be
  12. # caught based on specific http requests regardless of the ordering of
  13. # filters... also matches posts
  14. # Sites that serve really long cookies may break this by pushing the
  15. # server response too far away from the beginning of the connection. To
  16. # fix this, increase the kernel's data buffer length.
  17. http
  18. # Status-Line = HTTP-Version SP Status-Code SP Reason-Phrase CRLF (rfc 2616)
  19. # As specified in rfc 2616 a status code is preceeded and followed by a
  20. # space.
  21. http/(0\.9|1\.0|1\.1) [1-5][0-9][0-9] [\x09-\x0d -~]*(connection:|content-type:|content-length:|date:)|post [\x09-\x0d -~]* http/[01]\.[019]
  22. # A slightly faster version that might be good enough:
  23. #http/(0\.9|1\.0|1\.1) [1-5][0-9][0-9]|post [\x09-\x0d -~]* http/[01]\.[019]
  24. # old pattern(s):
  25. #(http[\x09-\x0d -~]*(200 ok|302 |304 )[\x09-\x0d -~]*(connection:|content-type:|content-length:))|^(post [\x09-\x0d -~]* http/)