I was playing around with fiddler (http proxy) and I noticed that some apps are making http get/post requests in the background and sending data and stats to and from the web. This got me interested and a little concerned to see what data various apps were sending but it seems that most of them are not doing it on port 80 via http but presumably on another port so you can't see the data in fiddler. Is there some way to view and/or potentially block the data being sent?
Asked
Active
Viewed 94 times
2 Answers
1
You're asking: "Using Fiddler, I saw that traffic was being sent by clients to servers. How can I see that traffic?"
Might I suggest you use Fiddler?
You can see the process sending the traffic in the Process column, and you can view the contents of the requests and responses using the Inspectors tab.

EricLaw
- 56,563
- 7
- 151
- 196
-
As I said most apps do not use port 80 so you see nothing in fiddler. I meant that the data that some apps are sending does not show up in fiddler so I wondered how it was being sent and how to view it? I assumed it must be on some other port other than port 80 so that is why it is not visible in fiddler so i was wondering how to see it? – Damo Z Jun 16 '15 at 18:09
-
Fiddler doesn't care at all what port the target uses. Your question says you were "playing around with Fiddler" and "noticed some apps" which implies that you did, in fact, see the data inside Fiddler. Maybe you need to revise your question for clarity? – EricLaw Jun 16 '15 at 19:14
0
I would check out burp suite. It is a proxy you set up in your web browser and shows all of the data that passes through it. There's plenty of tutorials online. Check it out here

Camron_Godbout
- 1,583
- 1
- 15
- 22