mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
HTTP CONNECT proxy support.
- The HTTP analyzer now supports handling HTTP CONNECT proxies same as the SOCKS analyzer handles proxying.
This commit is contained in:
parent
f45bd84f4c
commit
dd0856a57f
10 changed files with 102 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
|
||||
#include "analyzer/protocol/tcp/TCP.h"
|
||||
#include "analyzer/protocol/tcp/ContentLine.h"
|
||||
#include "analyzer/protocol/pia/PIA.h"
|
||||
#include "analyzer/protocol/zip/ZIP.h"
|
||||
#include "analyzer/protocol/mime/MIME.h"
|
||||
#include "binpac_bro.h"
|
||||
|
@ -237,6 +238,9 @@ protected:
|
|||
int connection_close;
|
||||
int request_ongoing, reply_ongoing;
|
||||
|
||||
bool connect_request;
|
||||
pia::PIA_TCP *pia;
|
||||
|
||||
Val* request_method;
|
||||
|
||||
// request_URI is in the original form (may contain '%<hex><hex>'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue