1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
# PACKIT
**Network injection and capture tool**
<br><br>
**1. HELP THIS PROJECT**<br>
**2. WHAT IS PACKIT?**<br>
**3. BUILDING FROM SOURCE**<br>
--------------------
1. HELP THIS PROJECT
--------------------
Packit needs your help. **If you are a programmer** and if you wants to
help a nice project, this is your opportunity.
My name is Eriberto and **I am not a C developer**. I imported Packit from
its old repository[1] to GitHub (the original homepage and developer are
inactive). After this, I applied all patches found in Debian project and
other places for this program. All my work was registered in ChangeLog
file (version 1.1 and later releases). I also maintain Packit packaged in
Debian[2].
If you are interested to help Packit, read the [CONTRIBUTING.md](CONTRIBUTING.md) file.
[1] http://packetfactory.openwall.net/projects/packit<br>
[2] https://packages.qa.debian.org/p/packit.html<br>
------------------
2. WHAT IS PACKIT?
------------------
Packit (PACket toolKIT) is a network auditing tool. It uses libpcap
and can make real packages (frames) that are able to travel in a
network. Packit also allows one to add personalized payloads. Other
good feature is the possibility to read dump files created by
tcpdump.
Packit has an ability to customize, inject, monitor and manipulate IP
traffic. By allowing you to define (spoof) nearly all TCP, UDP, ICMP,
IP, ARP, RARP, and Ethernet header options, Packit can be useful for
the following scenarios:
* tests in firewalls; <br>
* tests in Intrusion Detection Systems (IDS); <br>
* tests in Intrusion Prevention Systems (IPS); <br>
* tests in proxies; <br>
* tests in port scanning detectors; <br>
* network traffic simulations; <br>
* security tests; and <br>
* general TCP/IP auditing and pentests. <br>
Packit is also an excellent tool for learning TCP/IP. However, this
program does not support IPv6. (but you can help to implement it)
-----------------------
3. BUILDING FROM SOURCE
-----------------------
Packit requires the following elements to compile:
* autoconf >= 2.69 <br>
* libnet >= 1.1.2 <br>
* libpcap >= 0.8 <br>
Packit source installation is simple:
$ ./autogen.sh
$ ./configure
$ make
Then as 'root':
# make install
The autogen.sh can be used with the 'clean' option to remove all
generated files. Example:
$ ./autogen.sh clean
|