How to use charlesProxy to capture traffic

Free6

Newbie
Joined
Nov 21, 2016
Messages
47
Reaction score
1
Hi guys, I'd like to know how do I use CharlesProxy to capture Http Traffic.

I was using LiveHttpHeader and they suggested me to use CharlesProxy as it's efficient but I'm struggling to use the traffic I captured from Charles in a VB.Net project cause I need to make an
HttpWebRequest but I don't know what to take from Charles in order to make thaat HTTPWebRequest in VB.Net.

Please can you help
 
Hi guys, I'd like to know how do I use CharlesProxy to capture Http Traffic.

I was using LiveHttpHeader and they suggested me to use CharlesProxy as it's efficient but I'm struggling to use the traffic I captured from Charles in a VB.Net project cause I need to make an
HttpWebRequest but I don't know what to take from Charles in order to make thaat HTTPWebRequest in VB.Net.

Please can you help
I used charles proxy when I was repeating a request to get unlimited coins from a game. Maybe you can use it to see the text/php you send or receive from you.
 
Yes, thanks but I'm not really up to do that.

Can you please teach me or give me a tuto how to do so?
 
Hi gimme4free,

I'm able to set my Browser (FireFox and Google Chrome) to use 127.0.0.1:8888 Proxy;

but I don't know how to set VB.Net proxy to 127.0.0.1:8888?
 
Last edited:
Hi gimme4free,

I'm able to set my Browser (FireFox and Google Chrome) to use 127.0.0.1:8888 Proxy;

but I don't know how to set VB.Net proxy to 127.0.0.1:8888?

Code:
Dim request As HttpWebRequest = CType(Net.WebRequest.Create(URL), HttpWebRequest)
request.Proxy = New WebProxy("127.0.0.1", 8888)
 
use proxycap + charles...
for tutorial, youtube is your friend...
 
Code:
Dim request As HttpWebRequest = CType(Net.WebRequest.Create(URL), HttpWebRequest)
request.Proxy = New WebProxy("127.0.0.1", 8888)


Just like free6 i know how to use proxy but Where to paste this code?
 
@ gimme4free

Please I still have that issue https://www.blackhatworld.com/seo/httpwebrequest-failed-to-login-to-public-website.897043/#post-9512119 unresolved.

Can you please provide me a clue.
 
Just like free6 i know how to use proxy but Where to paste this code?

Within your request as shown in the code, just the same as adding a useragent, E.g.
Code:
Dim request As HttpWebRequest = CType(Net.WebRequest.Create(URL), HttpWebRequest)
request.Proxy = New WebProxy("127.0.0.1", 8888)
request.Useragent = "Bot Traffic"
 
Back
Top