Update http.js

This commit is contained in:
Namhyeon Go 2022-05-30 19:30:15 +09:00 committed by GitHub
parent 6ac790ec1d
commit 1e45ce428c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -745,6 +745,16 @@ var HTTPObject = function(engine) {
switch(_debugger) {
case "FIDDLER":
this.proxy = {
"enabled": true,
"protocol": "http",
"host": "127.0.0.1",
"port": 8888,
"credential": null
};
break;
case "FIDDLER2":
this.proxy = {
"enabled": true,
"protocol": "http",
@ -753,7 +763,7 @@ var HTTPObject = function(engine) {
"credential": null
};
break;
case "MITMPROXY":
this.proxy = {
"enabled": true,