23 lines
655 B
Batchfile
23 lines
655 B
Batchfile
@echo off
|
|
echo ========================================
|
|
echo HTTPS Connection Test
|
|
echo ========================================
|
|
echo.
|
|
echo This will test HTTPS connections through the proxy
|
|
echo and show detailed logs to help debug the issue.
|
|
echo.
|
|
echo Make sure the MITM proxy is running first!
|
|
echo.
|
|
pause
|
|
|
|
echo Testing HTTPS connection with curl...
|
|
curl -v --proxy http://127.0.0.1:8080 --max-time 15 https://httpbin.org/ip 2>&1
|
|
|
|
echo.
|
|
echo Testing HTTPS connection with different site...
|
|
curl -v --proxy http://127.0.0.1:8080 --max-time 15 https://www.google.com 2>&1
|
|
|
|
echo.
|
|
echo Test completed. Check the proxy logs for detailed information.
|
|
pause
|