
Hello, I am trying to decode a websocket payload message from a WS. Here is what i got:
GET https://gateway.discord.gg/?encoding=json&v=9&compress=zlib-stream HTTP/1.1
Host: gateway.discord.gg
Connection: Upgrade
Pragma: no-cache
Cache-Control: no-cache
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36
Upgrade: websocket
Origin: https://discord.com
Sec-WebSocket-Version: 13
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9
Sec-WebSocket-Key: NEzVIPJgSoYSmlBlsLNnmg==
Content-Encoding: gzip
x4ÉM
0л|ë¤$¥íb®bDF¬ª$c¹{ݸ{ð
´ì1äëòÎ`<
öÂÚÍJzsÝüõ~|§5h&VùðÏni´{¶ÂY½ííäß S^óÖ@îâj¶Ö? ÿÿ (Encoded)

Hello,
There seems to be a UI bug (running the latest version of FiddlerEverywhere) where it always says (Paused) no matter it's in on or off:
Mac OS version 10.15.7


Hi i'm using fiddler classic to analize performace of a client/server application (client winform and server on Azure .Net 4.8).
Comparing fiddler trace on 2 different PC (home pc and work pc) i notice a very long delay beetween GotRequestHeaders and ClientDoneRequest on work pc.
For example:
Home PC (equal time):
GotRequestHeaders 21:39:55.294
ClientDoneRequest 21:39:55.294
Work PC (0.4 difference):
GotRequestHeaders: 12:46:54.730
ClientDoneRequest: 12:46:55.109
Do you have any idea what could be causing this problem?
Could be an antivirus/Firewall/some software?
Thanks


Great, I installed the fiddler update. Now I can no longer decrypt https client traffic while debugging....
"The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel"
I had the fiddler cert trusted before and didn't get a prompt to trust it when enabling https decryption.
So I uninstalled Fiddler and removed the certs. Then reinstalled and I get the prompt but my apps are still faiing....
The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel
HI team.
we are using Fiddler core and wanted to have a small UI for it. wanted to check if Fiddler Core works with MAUI for mac and if there is some documentation. currently we are able to run it is net 6 but not in MAUI
also if there is any other technology that can be used apart from MAUI then it would also help
Thanks
Chetan
Adobe

static function OnBeforeRequest(oSession: Session)
if(oSession.HostnameIs("mywebsite") && oSession.HTTPMethodIs("POST") && oSession.uriContains("/some.web/data/Entry/Validate"))
{
oSession.utilDecodeResponse();
var body = oSession.GetResponseBodyAsString();
try {
var dataJson = Fiddler.WebFormats.JSON.JsonDecode(body).JSONObject;
var Co = (null); // HERE I MUST REPLACE WITH (null)
var Cap = MY-VALUE-HERE-LETTERS-AND-NUMBERS; //EXAMPLE: FATH45786544565342U7
dataJson["Dispo"]["{}"]["Ben"]["Co"] = Co;
dataJson["Dispo"]["{}"]["Ben"]["Cap"] = Cap;
}
catch(e) {
FiddlerObject.log(e);
}
body = Fiddler.WebFormats.JSON.JsonEncode(dataJson);
}
///// i want to place the code in fiddler-script JS //// please help me with a solution ! i am also ready to pay in btc for who want to help me ! thank you in advice !
