22b0c44eb6
Fixes: CVE-2014-8321 - gps_tracer stack overflow CVE-2014-8322 - tcp_test length parameter inconsistency CVE-2014-8323 - buddy-ng missing check in data format CVE-2014-8324 - net_get missing check for invalid values Previous CVE patch dropped since the fix is upstream. Also add hash file. Drop iw runtime dep since it's only one of many required by airmon-zc (a script) which require a ton of conditionals for just that tool. It will tell somewhat nicely if they're missing. These would be: awk - from busybox or gawk ethtool grep - from busybox or grep ip or ifconfig - from busybox, iproute2 or net-tools iw lspci - from pciutils (needs full variant) lsusb - from usbutils (needs full variant) modprobe/modinfo - from busybox or kmod uname - from busybox or coreutils [Peter: drop double -lpthread from sqlite conditional] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
19 lines
569 B
Plaintext
19 lines
569 B
Plaintext
config BR2_PACKAGE_AIRCRACK_NG
|
|
bool "aircrack-ng"
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_USE_MMU # uses fork()
|
|
# libnl has issues when linking statically
|
|
# they need fixing in libnl itself
|
|
select BR2_PACKAGE_LIBNL if !BR2_PREFER_STATIC_LIB
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_ZLIB
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
A set of tools for auditing wireless networks
|
|
|
|
http://www.aircrack-ng.org/
|
|
|
|
comment "aircrack-ng needs a toolchain w/ largefile, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|