blob: 99f30a7bff0e0b494c073372bca38c7d7fdea415 [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
15do_install_append() {
16 if [ "${PYTHON_PN}" = "python3" ]; then
17 sed -i -e 's/python/python3/' ${D}${bindir}/scapy
18 sed -i -e 's/python/python3/' ${D}${bindir}/UTscapy
19 fi
20}
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021
22do_install_ptest() {
23 install -m 0644 ${S}/test/regression.uts ${D}${PTEST_PATH}
24 sed -i 's,@PTEST_PATH@,${PTEST_PATH},' ${D}${PTEST_PATH}/run-ptest
25}
26
Brad Bishop19323692019-04-05 15:28:33 -040027RDEPENDS_${PN} = "tcpdump ${PYTHON_PN}-compression ${PYTHON_PN}-cryptography ${PYTHON_PN}-netclient \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080028 ${PYTHON_PN}-netserver ${PYTHON_PN}-pydoc ${PYTHON_PN}-pkgutil ${PYTHON_PN}-shell \
29 ${PYTHON_PN}-threading ${PYTHON_PN}-numbers ${PYTHON_PN}-pycrypto"