We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was testing an app which requires to skip SSL check and perform NTLM authentication through Burp Proxy on a Windows machine.
The SSL checking can be bypassed by appending $lwp ->ssl_opts(verify_hostname => 0,SSL_verify_mode => 0x00); after the following
$lwp ->ssl_opts(verify_hostname => 0,SSL_verify_mode => 0x00);
$lwp = LWP::UserAgent->new(env_proxy => 1, keep_alive => 1, timeout => 30, requests_redirectable => [], );
I used the proxy option but somehow it was not working because the original code proxied the http traffic only, so I changed the code from
$lwp->proxy(['http'], "http://".$proxy);
to
$lwp->proxy('https', "http://127.0.0.1:8080");
so the https traffic would be proxied to burp.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was testing an app which requires to skip SSL check and perform NTLM authentication through Burp Proxy on a Windows machine.
The SSL checking can be bypassed by appending
$lwp ->ssl_opts(verify_hostname => 0,SSL_verify_mode => 0x00);
after the followingI used the proxy option but somehow it was not working because the original code proxied the http traffic only, so I changed the code from
$lwp->proxy(['http'], "http://".$proxy);
to
$lwp->proxy('https', "http://127.0.0.1:8080");
so the https traffic would be proxied to burp.
The text was updated successfully, but these errors were encountered: