Tagged Questions
The raw-sockets tag has no wiki summary.
8
votes
2answers
359 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 ...
7
votes
5answers
8k views
How Do I Use Raw Socket in Python?
I am writing an application to test a network driver for handling corrupted data. And I thought of sending this data using raw socket, so it will not be corrected by the sending machine's TCP-IP ...
5
votes
7answers
1k views
How to detect a timeout when using asynchronous Socket.BeginReceive?
Writing an asynchronous Ping using Raw Sockets in F#, to enable parallel requests using as few threads as possible. Not using "System.Net.NetworkInformation.Ping", because it appears to allocate one ...
4
votes
2answers
311 views
Writing a basic traceroute script in C
I have to write a trceroute script but I'm not sure if my attempts are correct.
Right now I'm doing it like that (please correct me if I'm doing wrong or clumsy):
Got an struct for ip- and ...
4
votes
2answers
292 views
Low level networking in assembler (x86 compatible)
I wish to write a bootable program in assembler that would be capable of sending and receiving network packets. I do not wish to use any libraries, I'd like to create it all by myself (and also learn ...
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
49 views
Prevent Thread From Sleeping When Calling Socket.Receive
I'm working on a low latency financial application that receives tcp data over sockets.
This is how I'm making a socket connection and receiving bytes:
public class IncomingData
{
Socket _Socket;
...
3
votes
3answers
409 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, ...
3
votes
1answer
366 views
Raw Socket Help: Why UDP packets created by raw sockets are not being recieved by kernel UDP?
I am studying raw sockets. I used the IP_HDRINCL option to build my own IP headers. After the IP header, I am building a UDP header. Then I am sending the packet to my system's loopback address. I ...
3
votes
3answers
387 views
How to read complete IP frames from TCP socket in Python?
I need to read a complete (raw) IP frame from a TCP stream socket using Python. Essentially I want an unmodified frame just as if it came off the physical line, including all the header information.
...
3
votes
2answers
537 views
connecting to OrientDB from PHP
I would like to write an adapter for PHP for the binary API of OrientDB.
But I need a bit of help from someone who has experience with raw socket communications in PHP - I can't seem to even get past ...
3
votes
1answer
2k views
how to bind raw socket to specific interface
My application is running on CentOS 5.5.
I'm using raw socket to send data:
sd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
if (sd < 0) {
// Error
}
const int opt_on = 1;
rc = ...
3
votes
1answer
490 views
Mac + Ruby: Can't access ioctl of Socket? How to fix?
Good time of day.
Ruby Code:
def hw_address(iface)
sock = Socket.new(Socket::AF_INET, Socket::SOCK_DGRAM,0)
buf = [iface,""].pack('a16h16')
sock.ioctl(SIOCGIFHWADDR, buf);
...
2
votes
3answers
90 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. ...
2
votes
2answers
124 views
Does libpcap use raw sockets underneath them?
I was getting a bit confused on using of raw sockets and libcap. Can, anyone in simple point out advantages of using both. I read few links, but, its making me confused.
2
votes
2answers
151 views
How can I extract mac address from a icmp reply in c on linux
I am trying to find out mac address of a machine in a switched environment after sending it a raw packet. I am trying to implement traceroute command . I want to know when i receive a ICMP time ...
2
votes
2answers
754 views
How to bind a Raw Socket to a specific port?
I am currently working on a programming assignment. The assignment is to implement a client,network emulator, and server. The client passes packets to a network emulator, and the network emulator ...
2
votes
1answer
717 views
Sending Multicast with RAW Socket in C on Linux
I have written a programm running on Ubuntu LTE that should send an Multicast-Message to 239.255.25.25 Port 5004 using a raw socket. To receive the Multicast, I am using an UDP Socket. The data to ...
2
votes
1answer
325 views
How to set the Don't Fragment (IP_DF) flag in C
I want to set the Don't Fragment flag on a IP packet. Is there a way to do so via the setsockopt() function or via the flags of the sendto() function?
Can I do this with "normal" sockets or do i have ...
2
votes
2answers
170 views
What should I use as a buffer in C++ for receiving data from network sockets?
I'm using sockets with C++. The program simply requests an HTTP page, reads it into a buffer buf[512], and then displays the buffer. However pages can contain more data than the buffer, so it will cut ...
2
votes
1answer
2k views
Possible to safely run multiple Android emulators on the same machine and communcate using sockets?
I would like to simulate a small cluster of Android devices either on one laptop (worst-case), or on several machines on a private network. This is for testing communications and process migration on ...
2
votes
5answers
2k views
Packet socket in promiscuous mode only receiving local traffic
I have a socket created with socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)), and I've set it into promiscuous mode using
struct ifreq ifr;
strncpy((char*)ifr.ifr_name, interface, IF_NAMESIZE);
...
2
votes
7answers
2k views
How to discard incoming packets in raw socket?
I'm writing a C/C++ application under Linux that reads data from a raw socket (for ICMP packets). Question: is there a way to discard all data that is still queued on the socket?
The problem is that ...
1
vote
1answer
113 views
Is there any way to send serial data over physical ethernet layer with no encapsulation? [closed]
I wonder if I can use the physical ethernet layer like a serial port. Is it possible?
The case would be reading signals with an electronic device without dealing with networking headers.
1
vote
2answers
135 views
How to use raw sockets in WinCE5?
I need to use raw sockets in Windows CE 5.0. The following code always fails with error
socket failed, err:10044.(The support for the specified socket type does not exist in this address family.)
...
1
vote
2answers
266 views
Socket transmit data but can't receive response
I am trying to implement UpNP in C++, I found a few sources on google but none worked. I found this one working (http://www.codeproject.com/KB/IP/upnplib.aspx) but it's for .NET, so I decided to sniff ...
1
vote
1answer
338 views
Does the ICMP Header Checksum include the data as well?
As part of a homework assignment, I have to write a C program in Linux that generates ICMP replies to ICMP Echo requests using raw sockets. Does the data in the ICMP Packet have to be included in the ...
1
vote
2answers
403 views
Unable to read incoming responses using raw sockets
I am trying to read a response from a website via code by listening to a raw socket, though so far I've only been able to read the outgoing requests sent by my computer rather than the incoming ...
1
vote
1answer
832 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
2answers
139 views
Does sendto() dst_addr arg matters if used on a raw socket with IP_HDRINCL set?
The question is almost all in the title.
I was wondering, given that:
- I use a raw socket (on GNU/Linux);
- the option IP_HDRINCL is set so that I craft the IP headers by myself.
As the dest IP ...
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
1answer
279 views
How to migrate existing udp application to raw sockets
Is there a tutorial for migration from plain udp sockets (linux, C99/C++, recv syscall is used) to the raw sockets?
According to http://aschauf.landshut.org/fh/linux/udp_vs_raw/ch03s04.html
raw ...
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.
...
1
vote
3answers
1k views
How to write byte by byte to socket in PHP?
How to write byte by byte to socket in PHP?
For example how can I do something like:
socket_write($socket,$msg.14.56.255.11.7.89.152,strlen($msg)+7);
The pseudo code concatenated digits are ...
1
vote
2answers
1k views
Using recvfrom() with raw sockets : general doubt
I have created a raw socket which takes all IPv4 packets from data link layer (with data link layer header removed). And for reading the packets I use recvfrom.
My doubt is:
Suppose due to some ...
1
vote
2answers
962 views
How can i use RAW Sockets in Ruby?
i'm trying to create a raw sockets using ruby .... the problem is there isn't any thing called raw socket there ,and on the other hand the socket class itself is not fully documented .... do any body ...
0
votes
0answers
134 views
python icmp raw socket implementation
i am relatively new to python, so please be considerate...
i'm implementing a server and a client via raw_sockets.
i have the necessary privileges.
now, the server i defined so:
host = ...
0
votes
1answer
50 views
Can iperf tool be used for measuring the throughput of raw sockets?
I am using client server application using raw sockets, can I measure the throuhput between them using iperf.
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
110 views
dereferencing pointer to incomplete type with struct ip and also with struct iphdr
hello i'm trying to parse some packets, and when using struct ip i get the: "dereferencing pointer to incomplete type" error message.
So i tryed then with struct iphdr but still have the same problem
...
0
votes
1answer
126 views
Set IP_HDRINCL with PF_PACKET error in linux
I setup a raw Packet socket using the following:
sockFd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL) );
Then I am trying to set the socket option IP_HDRINCL using:
int one = 1;
if (setsockopt ...
0
votes
1answer
155 views
Using ntop() instead of ntoa() on an older raw socket tutorial
I am following the tutorial at this link to create a raw socket packet sniffer:
http://www.security-freak.net/raw-sockets/sniffer_eth_ip.c
The code uses the ntoa() function to get the dot-notation ...
0
votes
0answers
55 views
How to initialize PDP on iPad?
My application works with plain C sockets, so on start-up it has to ensure that the PDP is activated. Currently, I do this by calling [NSURLConnection sendSynchronousRequest:...] with ...
0
votes
0answers
72 views
DoS prevention/network monitoring [closed]
i am trying to make a syn flooding monitor(a firewall kind of that will check for syn floods). I am using C (on ubuntu) for that.
Do i need to use raw sockets, or normal ones will do??
If only raw ...
0
votes
0answers
440 views
How to send gratuitous ARP messages using Raw socket mode in visual studio 2008
I have been trying to use AddIPAddress to implement a virtual IP address among two computer for redundancy failover. It appears that AddIPAddress is not sending out a gratuitous ARP so that other ...
0
votes
1answer
1k views
Send an UDP packet and receive an ICMP response from router in C
I'm trying write a C program that sends an UDP packet to a given IP adress and waits for an ICMP response of a router telling that the time to live expired. It's kept very simple because I just want ...
0
votes
2answers
190 views
How to implement bridging/NAT on linux? [closed]
What I have is a network topology which looks like this:
------ PC --- IP Camera
The PC has two ethernet interfaces, and is hosting a small webserver providing some auxiliary data. The issue is ...
0
votes
1answer
419 views
How to bind a raw_socket to an specific interface in kernelspace?
My problem is, when I listen with PF_PACKET I also get the packets my box sends and which is undesirable.
err_create = sock_create(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL), sock);
Instead of ETH_P_ALL ...
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 ...