Tagged Questions
The libnet tag has no wiki summary.
4
votes
1answer
675 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
1answer
126 views
Why doesn't passing an array reference for the Host parameter in Net::FTP->new work?
I'm building an FTP client using Net::FTP. The documentation states that the new constructor has a Host option which can be a reference to an array with hosts to try in turn. I don't seem to be able ...
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
1answer
353 views
Trouble installing libnet-0.10.11 on Ubuntu-9.10
Here's what I did...
#tar -xzvf libnet-0.10.11.tar.gz
#cd libnet
Then I copied the linux.mak file to the port.mak file in the parent directory.
Then, as the documentation says, I used make in ...
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 ...
1
vote
0answers
181 views
checksum error with building an HTTP packet(but over TCP, like syn/ack its ok)
I am building a NAT program,I change each packet that comes from our internal subnet, change it's source IP address by libnet functions.( catch the packet with libpcap, put it sniff structures and ...
0
votes
1answer
42 views
How to modify and resend packet in network
I'm doing an exercise ARP sniffing.
I want to simulate a attack like Man in The Middle.
I had been sending arp to change way packet to Attacker PC.
But I don't know How to forwarding this packet I ...
0
votes
1answer
67 views
How to get pylibnet installed on a Mac
In example.py file I have:
import libnet
but when I execute it via:
/opt/local/bin/python2.5 example.py
I'm getting "ImportError: No module named libnet"
How I tried to install it:
went to ...
0
votes
0answers
114 views
How to build ICMPv6 packet with libnet?
Is it possible to build ICMPv6 packet with libnet? The only functions I see are concerning ICMPv4 ( libnet_build_icmpv4_xxxxx() ). Thank you.
0
votes
0answers
116 views
Injecting frame with libnet captured by libpcap without having to create the frame from the scratch?
I capture frames with libpcap on interface 1. Is it possible to send them with libnet on interface 2 without actually having to parse the frames and then create them from the scratch (using functions ...
0
votes
2answers
149 views
c++ code using libnet not compiling
guys im trying to compile my libnet script and am getting this error:
[root@whyme]# gcc -Wall `libnet-config --defines` mysocket.cc -o mysocket `libnet-config --libs` -lpcap -lnet
/tmp/ccUPbuVg.o: In ...
0
votes
0answers
175 views
Libnet - IPv6 support for windows (libnet_name2addr6)
A few days ago I had successfully built a project to send an ICMP echo request - IPv4 using the libnet library (version 1.1.2.1) using Visual Studio 2008. I captured the packets using WireShark.
I ...
0
votes
1answer
163 views
How to embed and listen data over icmp in order to tunnel connection with using python
i am trying to code one tunnel tool but i could not receive packet from icmp. I uses socket library, is there any one pylibnet or pynet library
0
votes
1answer
56 views
Pylibnet constants
i am introducing myself in the pylibnet library, I want to ask you how i can get the constants imported in this code.
import libnet
from libnet.constants import *
I try help(libnet) but there are ...
0
votes
0answers
45 views
what is libnet and where to get basicmaterial
hi i am not sure abt wat is libnet and what is the use of it?i need to use it in my project can u pls tel me what it is and how to get the basic study material
0
votes
1answer
122 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
944 views
problem with libnet install
when i install libnet by sudo apt-get install libnet1, the program can not find libnet.h and I also can not find it at /usr/local/include or /usr/include.
so i download the libnet and make it, but I ...
0
votes
1answer
442 views
Are there any examples with libpcap and libnet?
I want to capture ip packages on one server, and then forward the packages to another server by libnet, who has some examples ? thanks in advance.
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 ...
0
votes
2answers
127 views
Where can I find documentation for Net::Libnet?
Could someone provide some links to additional documentation or tutorials for the CPAN module Net::Libnet?
0
votes
3answers
797 views
libnet creates UDP packets with invalid checksums
I'm using pylibnet to construct and send UDP packets. The UDP packets I construct in this way all seem to have invalid checksums. Example:
# python
Python 2.4.3 (#1, Sep 3 2009, 15:37:12)
[GCC ...
0
votes
1answer
488 views
libnet that properly calculates checksum on IPV6
I have recently started playing around with libnet and using it to generate IPV6 packets. I am very new at programming, however, I am quite happy with the library.
I have one problem with it ...