Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#5951 closed enhancement (fixed)

NEW: scapy 1.0.2.9

Reported by: chris.owen@… Owned by: macports-tickets@…
Priority: Normal Milestone:
Component: ports Version: 1.0
Keywords: Cc:
Port:

Description

scapy-1.02

The portfile can be found: ATTACHED

Description:

Scapy is a powerful interactive packet manipulation program. It is able to forge or decode packets of a wide number of protocols, send them on the wire, capture them, match requests and replies, and much more. It can easily handle most classical tasks like scanning, tracerouting, probing, unit tests, attacks or network discovery (it can replace hping, 85% of nmap, arpspoof, arp-sk, arping, tcpdump, tethereal, p0f, etc.). It also performs very well at a lot of other specific tasks that most other tools can't handle, like sending invalid frames, injecting your own 802.11 frames, combining technics (VLAN hopping+ARP cache poisoning, VOIP decoding on WEP encrypted channel, ...), etc.

What makes scapy different from most other networking tools?

First, with most other tools, you won't build someting the author did not imagine. These tools have been built for a specific goal and can't deviate much from it. For example, an ARP cache poisoning program won't let you use double 802.1q encapsulation. Or try to find a program that can send, say, an ICMP packet with padding (I said padding, not payload, see?). In fact, each time you have a new need, you have to build a new tool. Second, they usually confuse decoding and interpreting. Machines are good at decoding and can help human beings with that. Interpretation is reserved to human beings. Some programs try to mimic this behaviour. For instance they say "this port is open" instead of "I received a SYN-ACK". Sometimes they are right. Sometimes not. It's easier for beginners, but when you know what you're doing, you keep on trying to deduce what really happened from the program's interpretation to make your own, which is hard because you lost a big amount of information. And you often end up using tcpdump -xX to decode and interpret what the tool missed.

Third, even programs which only decode do not give you all the information they received. The network's vision they give you is the one their author thought was sufficient. But it is not complete, and you have a bias. For instance, do you know a tool that reports the padding ?

Scapy tries to overcome those problems. It enables you to build exactly the packets you want. Even if I think stacking a 802.1q layer on top of TCP has no sense, it may have some for somebody else working on some product I don't know. Scapy has a flexible model that tries to avoid such arbitrary limits. You're free to put any value you want in any field you want, and stack them like you want. You're an adult after all.

In fact, it's like building a new tool each time, but instead of dealing with a hundred line C program, you only write 2 lines of Scapy.

After a probe (scan, traceroute, etc.) Scapy always gives you the full decoded packets from the probe, before any interpretation. That means that you can probe once and interpret many times, ask for a traceroute and look at the padding for instance.

Homepage: http://www.secdev.org/projects/scapy/

Comments: The first port took me over 5 hours, the next two about 1 hour each. I feel the learning curve lessening :).

Christopher Owen e: chris.owen@… c: 604.306.0704

Attachments (2)

scapy.tar.gz (1.5 KB) - added by chris.owen@… 18 years ago.
This is the Portfile and a patch required to make scapy work
scapy.tar.2.gz (1.5 KB) - added by chris.owen@… 18 years ago.
The new patch Portfile :)

Download all attachments as: .zip

Change History (6)

Changed 18 years ago by chris.owen@…

Attachment: scapy.tar.gz added

This is the Portfile and a patch required to make scapy work

comment:1 Changed 18 years ago by chris.owen@…

attachments.isobsolete: 01

Changed 18 years ago by chris.owen@…

Attachment: scapy.tar.2.gz added

The new patch Portfile :)

comment:2 Changed 18 years ago by chris.owen@…

Cc: matt@… added
Summary: NEW: scapy 1.02NEW: scapy 1.0.2.9

Please place scapy in net/

comment:3 Changed 18 years ago by matt@…

Resolution: fixed
Status: newclosed

Committed. Also appended .diff to the end of the patch

Thanks Chris!

comment:4 Changed 18 years ago by matt@…

Cc: matt@… removed
Note: See TracTickets for help on using tickets.