invernizzi / scapy-http

Support for HTTP in Scapy
Other
301 stars 77 forks source link

HTTP Response parse error in Status-Line and header fields #24

Open sherrypan opened 7 years ago

sherrypan commented 7 years ago

The TCP payload is "HTTP/1.1 200 OK/r/nContent-length = 100....", and the module outputs "HTTP/1.1 200 OK Content-length = 100...." without any modify. @invernizzi

dylannnnn commented 6 years ago

line24: crlfcrlf = b"\x0d\x0a\x0d\x0a" to: crlfcrlf = b"\x0d\x0a"