blob: baa69b244acc4cde9cc8f5330e3328efb0afadfe [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001SUMMARY = "Network scanning and manipulation tool"
2DESCRIPTION = "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."
3SECTION = "security"
4LICENSE = "GPLv2"
5
6LIC_FILES_CHKSUM = "file://bin/scapy;beginline=9;endline=13;md5=1d5249872cc54cd4ca3d3879262d0c69"
7
Brad Bishop19323692019-04-05 15:28:33 -04008S = "${WORKDIR}/git"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08009
Brad Bishop19323692019-04-05 15:28:33 -040010SRCREV = "bad14cb1a5aee29f8107fbe8ad008d4645f14da7"
11SRC_URI = "git://github.com/secdev/scapy.git"
12
13inherit ptest
14
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080015do_install_ptest() {
16 install -m 0644 ${S}/test/regression.uts ${D}${PTEST_PATH}
17 sed -i 's,@PTEST_PATH@,${PTEST_PATH},' ${D}${PTEST_PATH}/run-ptest
18}
19
Brad Bishop19323692019-04-05 15:28:33 -040020RDEPENDS_${PN} = "tcpdump ${PYTHON_PN}-compression ${PYTHON_PN}-cryptography ${PYTHON_PN}-netclient \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021 ${PYTHON_PN}-netserver ${PYTHON_PN}-pydoc ${PYTHON_PN}-pkgutil ${PYTHON_PN}-shell \
22 ${PYTHON_PN}-threading ${PYTHON_PN}-numbers ${PYTHON_PN}-pycrypto"