Tagged Questions
4
votes
1answer
677 views
using libnet to send ARP request, but arp cache won't update after getting the ARP reply
I need to look up MAC address in the local network and I'm using Linux. What I do is send a ARP request with libnet, but after I send 3 requests, the cache still won't update. I use wireshark to catch ...
2
votes
2answers
905 views
Up-To-Date Libnet Tutorials
I've googled around for a while trying to find a good libnet tutorial but most of them appear to be out of date or lacking on good code examples. What do you recommend for learning libnet?
I'm also ...
1
vote
0answers
105 views
Libnet TCP checksum error
I am trying to build a TCP packet using libnet library. I use '0' for autocomputation of checksum value in the libnet_build_tcp function. However, it seems the checksum ignores the pseudo-header when ...
1
vote
2answers
196 views
libnet fails to write ip packets
I'm using a program using libnet, and every time I use it, libnet fails to send any packets.
Specifically, the function that fails is : libnet_write_ip.
It returns -1 on every call.
Any ideas what ...
0
votes
1answer
123 views
error: ‘LIBNET_ERR_FATAL’ with libnet
I write a demo with libnet, but get an error when call the function:
libnet_error(LIBNET_ERR_FATAL, "libnet_open_link_interface: %s\n", errbuf);
The error is "error: ‘LIBNET_ERR_FATAL’ undeclared ...
0
votes
1answer
344 views
Can libnet be used to inject tcp packets/packet mangling?
I just took a glance at the introduction of libnet,
seems it mentioned support for udp,*ip*,but not tcp?
Does it support tcp at all?
0
votes
2answers
169 views
Passing the shell-command to RSH daemon inside an “ACK” packet
Writing a program on C, using libnet and libpcap to impersonate an RSH client and inject my own command on the server machine, running RSHD.
As I understood, the command should be in the 'payload' of ...