mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2025-04-03 13:53:37 +03:00
http: Add padding for CONNECT requests
This commit is contained in:
parent
8c0ccd2a12
commit
fbd28b78d7
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
#include <unordered_set>
|
||||
|
||||
#include "base/metrics/histogram_macros.h"
|
||||
#include "base/rand_util.h"
|
||||
#include "base/strings/string_util.h"
|
||||
#include "base/strings/stringprintf.h"
|
||||
#include "net/base/host_port_pair.h"
|
||||
|
@ -40,6 +41,7 @@ void ProxyClientSocket::BuildTunnelRequest(
|
|||
request_headers->SetHeader(HttpRequestHeaders::kUserAgent, user_agent);
|
||||
|
||||
request_headers->MergeFrom(auth_headers);
|
||||
request_headers->SetHeader("Padding", std::string(base::RandInt(16, 32), '.'));
|
||||
}
|
||||
|
||||
// static
|
||||
|
|
Loading…
Add table
Reference in a new issue