How to edit body before send request with Fiddler(script)
in my case path /login have body username: xxx pass: xxxx
how to edit user pass before send send request
How to edit body before send request with Fiddler(script)
in my case path /login have body username: xxx pass: xxxx
how to edit user pass before send send request
For modifying requests in Fiddler classic use the OnBeforeResponse
function. To replace username and password in body of the HTTP request (not in header as used e.g. by BASIC auth) you can use utilReplaceInRequest
method which performs search and replace on text level:
static function OnBeforeResponse(oSession: Session) {
// check if the requests is to the correct hosts and path
if (oSession.HostnameIs("www.example.org") && oSession.PathAndQuery.Contains("/login")) {
oSession.utilDecodeResponse();
oSession.utilReplaceInRequest("username: xxx", "username: newusername");
oSession.utilReplaceInRequest("pass: xxxx", "pass: newpassword");
}
}
Alternatively you can get the body as text and manipulate it as you want using standard .Net String methods:
if (oSession.HostnameIs("www.example.org") && oSession.PathAndQuery.Contains("/login")) {
oSession.utilDecodeResponse();
var body = oSession.GetRequestBodyAsString();
// use .Net String manipulation methods to find and replace text in the body
oSession.utilSetRequestBody(body);
}
This will open 2 prompt windows to enter the username and then password after entering the login URL in a browser and executing a request. The prompts may not popup in front of the browser, you may need to switch focus to fiddler to use the prompt windows