Skip to content

Instantly share code, notes, and snippets.

@chayn1k
Forked from antelle/FiddlerScript.cs
Created January 26, 2018 22:36
Show Gist options
  • Save chayn1k/80de91c6a6d13e58fa429bff38d9b44f to your computer and use it in GitHub Desktop.
Save chayn1k/80de91c6a6d13e58fa429bff38d9b44f to your computer and use it in GitHub Desktop.
Change response in Fiddler
static function OnBeforeRequest(oSession: Session) {
if (oSession.RequestMethod == 'GET' && oSession.PathAndQuery.IndexOf('part_of_your_url') > 0) {
oSession.utilCreateResponseAndBypassServer();
oSession.oResponse.headers.HTTPResponseCode = 401;
oSession.oResponse.headers.HTTPResponseStatus = '401 Not Authorized';
oSession.oResponse.headers['Access-Control-Allow-Origin'] = '*';
oSession.utilSetResponseBody('response_body');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment