Skip to content

Instantly share code, notes, and snippets.

@dewdad
Forked from antelle/FiddlerScript.cs
Created March 22, 2019 19:46
Show Gist options
  • Save dewdad/b34f3e9dce97a42727ce3f6443ac8efd to your computer and use it in GitHub Desktop.
Save dewdad/b34f3e9dce97a42727ce3f6443ac8efd 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