user3146699
user3146699

Reputation: 21

Spoofing IP HttpWebRequest C#

I was try to spoof my IP while using HttpWebRequest. I've searched here for a solution and found this piece of code:

request.ServicePoint.BindIPEndPointDelegate = delegate { return new IPEndPoint(IPAddress.Parse("Spoofed IP Goes Here"), 0); };

Yet this code does not work for me, can you guys give me another solution?

Upvotes: 0

Views: 2774

Answers (1)

Partho
Partho

Reputation: 138

It can be done by using SharpPCap. See this answer by Evan.

Upvotes: 1

Related Questions