httpinterpret
httpinterpret

Reputation: 6709

How to do packet mangling with winsock2 in windows?

I'm following examples here,

but none of them provides an example on how to modify packets(previously I used winpcap only to found that it can ONLY read packets!).

Can someone give me some clue even which function can actually modify incoming/outgoing packets??

Upvotes: 0

Views: 336

Answers (1)

Julien Lebosquain
Julien Lebosquain

Reputation: 41213

You have to write a custom NDIS driver or use existing solutions like WinpkFilter. There are no built-in function in Windows to modify packets in the user land.

Upvotes: 1

Related Questions