Tagged Questions

8
votes
2answers
357 views

Using raw sockets with C#

I want to write a port scanner in C# and I can't use SocketType.Raw as raw sockets were taken out from desktop versions of windows. I can't use SharpPcap either or other wrapper for Winpcap as I use ...
4
votes
5answers
2k views

Python TCP stack implementation

Is there a python library which implements a standalone TCP stack? I can't use the usual python socket library because I'm receiving a stream of packets over a socket (they are being tunneled to me ...
3
votes
3answers
408 views

TCP Connection Hijacking

I have a small project that I've been working on in C++, and due to the nature of what it does, I need to insert packets in to a live TCP stream. (The purpose is innocent enough, ...
2
votes
3answers
89 views

C Programming TCP Checksum

I have been having trouble doing the checksum for TCP for several days now. I have looked at many sources on the Internet but none of the examples that I have seen show you how to do the TCP checksum. ...
1
vote
1answer
831 views

How to reproduce TCP protocol 3-way handshake with raw sockets correctly?

Im simulating tcp protocol's 3-way handshake in c++, along with wireshark as my code runs. My code crafts the headers at ip and tcp layers, packs them, then send it to an http server with tcp header's ...
1
vote
1answer
282 views

How to determine start of data payload in TCP packet?

I'm writing program for monitoring FTP traffic using raw sockets. Now, I am able to determine start of data in TCP packet using this code: // char * packet; // struct * iphdr; // struct * tcphdr; // ...
1
vote
3answers
958 views

Can I make a “TCP packet modifier” using tun/tap and raw sockets?

I have a Linux application that talks TCP, and to help with analysis and statistics, I'd like to modify the data in some of the TCP packets that it sends out. I'd prefer to do this without hacking the ...
1
vote
1answer
731 views

tcp checksum and tcp offloading

i am using raw sockets to create my own socket. i need to set the tcp_checksum. i have tried a lot of references but all are not working (i am using wireshark for testing). could you help me please. ...
0
votes
1answer
67 views

Please, can anybody help in writing a server-client raw socket program in c/c++

I am new to raw socket. I want write a server and a client application that use raw sockets to send and receive raw data in one or more files. Each file may contain one or more data segments of 50 ...
0
votes
1answer
211 views

Can I send an ACK response to a successfully received SYNACK using BSD raw sockets?

My code tries to manually establish a TCP handshaking, and then, it sends a data segment requesting a resource via HTTP GET. I'm using raw sockets to craft the headers and send the packets, and ...
0
votes
2answers
455 views

C# - a userland TCP stack in Windows XP SP III

I'm trying to create an application to craft packets to be able to debug some gateways here, and to experiment with TCP DoS situations. Nevertheless this should be very easy, I didn't find a way to ...