views:

181

answers:

1

Hi, I am wondering whether it is even possible or I cannot do such a raw socket manipulation? If so, how can I try it? I am not trying to do this old DoS attack, just curious how to send it thru C#. Thanks

+3  A: 

You should be able to do this by creating a socket using SocketType.Raw and ProtocolType.IPoptions.

Then you can write the bytes that form the SYN packet to the socket.

Paolo