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 characters
| /* | |
| Only IE and Edge 18 and below support META cache-control and META pragma | |
| https://crbug.com/2763 | |
| https://html.spec.whatwg.org/multipage/semantics.html#pragma-directives | |
| */ | |
| import Meddler; | |
| import System; | |
| import System.Net.Sockets; | |
| import System.Windows.Forms; |
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 characters
| /* | |
| Only IE and Edge 18 and below support META cache-control and META pragma | |
| https://crbug.com/2763 | |
| https://html.spec.whatwg.org/multipage/semantics.html#pragma-directives | |
| */ | |
| import Meddler; | |
| import System; | |
| import System.Net.Sockets; | |
| import System.Windows.Forms; |
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 characters
| import Meddler; | |
| import System; | |
| import System.Net.Sockets; | |
| import System.Windows.Forms; | |
| class Handlers | |
| { | |
| static function OnConnection(oSession: Session) | |
| { | |
| try { |
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 characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\.fuzzle] | |
| "Content Type"="application/x-fuzzle" | |
| @="FuzzleProgID" | |
| [HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/x-fuzzle] | |
| "Extension"=".fuzzle" | |
| [HKEY_CLASSES_ROOT\FuzzleProgID] |
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 characters
| //Scroll to just inside class Handlers and add the following block: | |
| public static ToolsAction("E&poch Analyzer") | |
| function showTime() { | |
| var s = FiddlerScript.prompt("Enter an Epoch time", DateTimeOffset.Now.ToUnixTimeSeconds(), "Epoch Analyzer"); | |
| try { | |
| var sec= Int64.Parse(s); | |
| var dt: DateTimeOffset = DateTimeOffset.FromUnixTimeSeconds(sec); | |
| FiddlerScript.alert("Unix Epoch time "+s+" is:\n\tLocal:\t"+dt.ToLocalTime().ToString()+"\n\tGMT:\t"+dt.ToString()); | |
| } |
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 characters
| /* | |
| This sample shows how to implement the IOfficeAntiVirus interface in C# | |
| The resulting object, once registered, will calculate the file hash (SHA256/Sha1/MD5) for each file downloaded by Chrome, Edge, and Internet Explorer. | |
| In order to successfully register this object, we'll use REGASM to register the assembly, then run a registry script to add the IOfficeAntiVirus | |
| component category, and we'll delete the "Discardable\PostSetup" cache of known IOfficeAntiVirus implementations so that the next call to the IOfficeAntiVirus | |
| providers will find our new object. | |
| Eric Lawrence |
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 characters
| // Click Rules > Customize Rules. Scroll to OnBoot() and inside the function add: | |
| static function OnBoot() { | |
| FiddlerApplication.oProxy.add_DetachedUnexpectedly(DoReattach); | |
| //... | |
| // Just before the OnBoot function, add the following new functions: | |
| static function DoReattach(o: Object, ea: EventArgs) { | |
| FiddlerObject.UI.sbpInfo.Text = "Scheduling automatic reattach at " + new Date(); |
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 characters
| using System; | |
| using System.Security.Cryptography; | |
| using System.Security.Cryptography.X509Certificates; | |
| using Fiddler; | |
| [assembly: Fiddler.RequiredVersion("2.5.0.0")] | |
| namespace ClientCertPicker | |
| { | |
| public class ClientCertPicker: IFiddlerExtension | |
| { |
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 characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\Microsoft\Fiddler2\ImagesMenuExt] | |
| [HKEY_CURRENT_USER\Software\Microsoft\Fiddler2\ImagesMenuExt\&GifDump] | |
| "Command"="C:\\Program Files (x86)\\Fiddler2\\Tools\\gifdump.exe" | |
| "Types"="image/gif" | |
| [HKEY_CURRENT_USER\Software\Microsoft\Fiddler2\ImagesMenuExt\&JPEGSnoop] | |
| "Types"="image/jpeg" |