Created
May 23, 2012 03:50
-
-
Save kylestev/2773170 to your computer and use it in GitHub Desktop.
Revisions
-
kylestev created this gist
May 23, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ import Fiddler; class Handlers { static var injectJs = "<script>alert('I see you enjoy YouTube.')</script>"; static var hostList = new HostList("*.youtube.com"); static function OnBeforeResponse(oSession : Session) { // Filter to only HTML documents and on the domains we want if (hostList.ContainsHost(oSession.hostname) && oSession.oResponse.headers.ExistsAndContains("Content-Type", "text/html")) { oSession.utilDecodeResponse(); oSession.utilReplaceInResponse('</head>', injectJs + '</head>'); } } }