Update http.js

This commit is contained in:
Namhyeon Go 2022-05-31 00:29:07 +09:00 committed by GitHub
parent ece4de6823
commit 39f4db1966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -759,7 +759,7 @@ var HTTPObject = function(engine) {
console.warn("Existing proxy settings will be reset.");
switch (_debugger) {
case "FIDDLER":
case "FIDDLER": // Fiddler Classic
this.proxy = {
"enabled": true,
"protocol": "http",
@ -771,7 +771,7 @@ var HTTPObject = function(engine) {
this.curlOptions.push("--ssl-no-revoke");
break;
case "FIDDLER2":
case "FIDDLER2": // Fiddler Everywhere
this.proxy = {
"enabled": true,
"protocol": "http",
@ -783,9 +783,9 @@ var HTTPObject = function(engine) {
this.curlOptions.push("--ssl-no-revoke");
break;
case "MITMPROXY":
case "BURPSUITE":
case "ZAP":
case "MITMPROXY": // mitmproxy
case "BURPSUITE": // Burp Suite
case "ZAP": // OWASP ZAP Zed Attack Proxy
this.proxy = {
"enabled": true,
"protocol": "http",