Skip to content

Commit 064203b

Browse files
committed
Add README / prepare for Github migration
1 parent 669a62c commit 064203b

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.pyc

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
sudo: false
2+
3+
language: python
4+
5+
python:
6+
- 2.6
7+
- 2.7
8+
9+
install:
10+
- pip install pycrypto
11+
12+
script: cd test/ && ./run_tests -F -t regression.uts -K netaccess -K automaton

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Scapy #
2+
3+
Scapy is a powerful Python-based interactive packet manipulation
4+
program and library.
5+
6+
It is able to forge or decode packets of a wide number of protocols,
7+
send them on the wire, capture them, match requests and replies, and
8+
much more.
9+
10+
It can easily handle most classical tasks like scanning, tracerouting,
11+
probing, unit tests, attacks or network discovery (it can replace
12+
hping, 85% of nmap, arpspoof, arp-sk, arping, tcpdump, tethereal, p0f,
13+
etc.). It also performs very well at a lot of other specific tasks
14+
that most other tools can't handle, like sending invalid frames,
15+
injecting your own 802.11 frames, combining technics (VLAN hopping+ARP
16+
cache poisoning, VOIP decoding on WEP encrypted channel, ...),
17+
etc.
18+
19+
See
20+
[interactive tutorial](http://www.secdev.org/projects/scapy/doc/usage.html#interactive-tutorial)
21+
and
22+
[the quick demo: an interactive session](http://www.secdev.org/projects/scapy/demo.html)
23+
(some examples may be outdated).
24+
25+
# License #
26+
27+
Scapy is free software: you can redistribute it and/or modify it under
28+
the terms of the GNU General Public License as published by the Free
29+
Software Foundation, version 2.
30+
31+
Scapy is distributed in the hope that it will be useful, but WITHOUT
32+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
33+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
34+
for more details.
35+
36+
You should have received a copy of the GNU General Public License
37+
[along with Scapy](LICENSE). If not, see
38+
[the gnu.org web site](http://www.gnu.org/licenses/).

0 commit comments

Comments
 (0)