Under Review
Last Updated: 16 Feb 2018 03:41 by .
.
Created on: 15 Feb 2018 05:59
Type: Feature Request
2
Decrypt only HTTPS traffic for specific process
If we can filter-out sessions by process, we should be able to only interfere (decrypt) HTTPS sessions for specific processes, without affecting other running processes.

We have the option to decrypt HTTPS traffic from browsers, non-browsers, or all processes... why cannot we decrypt traffic only for specific processes?
1 comment
Eric
Posted on: 15 Feb 2018 06:00
https://www.fiddlerbook.com/fiddler/help/httpsdecryption.asp

Click Rules > Customize Rules.

Scroll to OnBeforeRequest. Inside, add:

if (oSession.HTTPMethodIs("CONNECT") && oSession["X-PROCESSINFO"] && !oSession["X-PROCESSINFO"].StartsWith("appicareabout")) {
    oSession["x-no-decrypt"] = "boring process";
}