Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide "Tunnel to" sessions

Tags:

fiddler

I try hide sessions generated by social part of Chrome. But hiding of traffic marked as "Tunnel to" in host column not working. Althoungh I successfully hide another sessions based on hostname patterns.

if (oSession.HTTPMethodIs("CONNECT")) {
        oSession["ui-hide"] = "y";
    }
like image 609
RobertW Avatar asked Nov 22 '13 10:11

RobertW


1 Answers

Try the menu option Rules -> Hide CONNECTs

like image 170
OCary Avatar answered Nov 11 '22 19:11

OCary