vote up 4 vote down star

How do you do low low level sockets in C, example: actually sending a SYN.

flag

4 Answers

vote up 5 vote down check

What you actually want is a raw socket ... you can completely control the headers and flags with the raw socket interface, but programming them is much more challenging. Here's a great tutorial to get you started: http://mixter.void.ru/rawip.txt.

link|flag
vote up 6 vote down

Raw sockets are your friend.

There have been some links to useful information on this question.

Also consult Chapter 25 "Raw sockets" of Steven's "Unix Network Programming"

If you're attempting cross platform code you may find libpcap a useful alternative.

link|flag
vote up 1 vote down

You want to use raw sockets. In *nix, you need to be root to be able to create raw sockets. I'm not sure if it's possible in Windows.

link|flag
it's possible and you have to be administrator(or system) to do it. – Kalmi Jan 16 at 11:47
vote up 0 vote down

I suspect the nmap sources would be an excellent place to look.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.