Tagged Questions
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 ...
2
votes
3answers
91 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
152 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
759 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
719 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
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);
...
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
283 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
959 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 ...
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
127 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
156 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
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
222 views
how to embed C code in python program?
i want to write a program using multi-threading, raw sockets, to scan the ports in python
i have a C code for injection of raw socket. i want to perform a ACK scan so need a raw socket.
So please ...
0
votes
6answers
276 views
strncmp() and if() does not agree…what am I missing?? (raw sockets)
I'm trying to build a simple echo server/client that works on ethernet level(using raw sockets).
The server side by itself works and shows all incoming packets on eth0.
The client works and sends ...
0
votes
1answer
1k views
c raw sockets and 64 bit issue
I'm still struggling to get my sample code working on a 64 bit machine. My previous problem was solved because of missing/outdated headers/libraries.
I compile this code as follow: gcc -Wall -g -o ...
0
votes
2answers
624 views
Accessing data link layer packets
I want to create a socket for accessing IPv4 packets from data link layer. From unix network programming V1,
socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP))
1)I am implementing a dhcp client, is ...