I would like to see what is going on when the app (win32 executable) is waiting for a response from the server.
For the web application, when you want to check the network activity, you go to Chrome Dev Tool and check the Network tab to see the traffic like in the image below:
How would I do the same for the some Windows application ? I tried to trace the communication with Wireshark, but it shows some unknown "hebrew" stuff.
I also tried to use Man in the middle approach with MITMPROXY, by setting the OS to specific PROXY: localhost:8080, but it works only for web browser and not the app itself.
Is there something you could suggest to do or to try some other methods ?

