Я запускаю mitmproxy с помощью следующей команды:
mitmproxy -v --listen-host 127.0.0.1 --ssl-insecure --set console_eventlog_verbosity:debug
и выполняю команду curl для продолжения перехвата, как показано ниже:
env https_proxy=http://localhost:8080 curl --proxy-insecure -v https://www.samplereplace.com/some_name
Проблема для меня здесь возникает, когда я попробуйте сделать это для таких сайтов, как www.google.com, www.facebook.com и т.д. c. Я могу его перехватить. Но когда я пытаюсь найти сайты, которые не существуют, например, в коде, он возвращает следующее для curl напрямую
* Uses proxy env variable https_proxy == 'http://localhost:8080'
* Trying 127.0.0.1:8080...
* TCP_NODELAY set
* Connected to localhost (127.0.0.1) port 8080 (#0)
* allocate connect buffer!
* Establish HTTP proxy tunnel to www.samplereplace.com:443
> CONNECT www.samplereplace.com:443 HTTP/1.1
> Host: www.samplereplace.com:443
> User-Agent: curl/7.68.0
> Proxy-Connection: Keep-Alive
>
< HTTP/1.1 200 Connection established
<
* Proxy replied 200 to CONNECT request
* CONNECT phase completed!
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
* CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* CONNECT phase completed!
* CONNECT phase completed!
* TLSv1.3 (IN), TLS handshake, Server hello (2):
* TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
* TLSv1.3 (IN), TLS handshake, Certificate (11):
* TLSv1.3 (IN), TLS handshake, CERT verify (15):
* TLSv1.3 (IN), TLS handshake, Finished (20):
* TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
* TLSv1.3 (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
* ALPN, server accepted to use http/1.1
* Server certificate:
* subject: CN=www.samplereplace.com
* start date: Jul 12 07:43:01 2020 GMT
* expire date: Jul 14 07:43:01 2021 GMT
* subjectAltName: host "www.samplereplace.com" matched cert's "www.samplereplace.com"
* issuer: CN=mitmproxy; O=mitmproxy
* SSL certificate verify ok.
> GET /ameet HTTP/1.1
> Host: www.samplereplace.com
> User-Agent: curl/7.68.0
> Accept: */*
>
* TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
* TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
* old SSL session ID is stale, removing
* Mark bundle as not supporting multiuse
< HTTP/1.1 502 Bad Gateway
< Server: mitmproxy 5.1.1
< Connection: close
< Content-Length: 398
< Content-Type: text/html
<
<html>
<head>
<title>502 Bad Gateway</title>
</head>
<body>
<h1>502 Bad Gateway</h1>
<p>ProtocolException('Server connection to (\'www.samplereplace.com\', 443) failed: Error connecting to "www.samplereplace.com": [Errno -2] Name or service not known')</p>
</body>
, а в случае журнала событий в mitmproxy показано следующее:
info: 127.0.0.1:35768: clientconnect
warn: 127.0.0.1:35820: Cannot connect to server, no server address given.
info: 127.0.0.1:35768: clientdisconnect
ПРИМЕЧАНИЕ: Если я выполняю команду curl для продолжения перехвата, как показано ниже:
env http_proxy=http://localhost:8080 curl --proxy-insecure -v http://www.samplereplace.com/some_name
Я в состоянии перехватить.