├── .gitmodules ├── README.md ├── libs └── protobuf-c │ ├── Makefile │ └── patches │ └── 010-pkgconfig.patch ├── net ├── hcxdumptool │ ├── Makefile │ └── patches │ │ ├── 010-openssl.patch │ │ └── 020-stdout.patch ├── hcxtools │ ├── Makefile │ └── patches │ │ └── 010-openssl.patch ├── kismet-openwrt │ ├── kismet-capture-linux-bluetooth │ │ └── Makefile │ ├── kismet-capture-linux-wifi │ │ └── Makefile │ ├── kismet-capture-nrf-51822 │ │ └── Makefile │ ├── kismet-capture-nrf-52840 │ │ └── Makefile │ ├── kismet-capture-nxp-kw41z │ │ └── Makefile │ ├── kismet-capture-rz-killerbee │ │ └── Makefile │ ├── kismet-capture-sdr-rtl433 │ │ └── Makefile │ ├── kismet-capture-sdr-rtladsb │ │ └── Makefile │ ├── kismet-capture-sdr-rtlamr │ │ └── Makefile │ ├── kismet-capture-ti-cc2531 │ │ └── Makefile │ ├── kismet-capture-ti-cc2540 │ │ └── Makefile │ ├── kismet-icao-database │ │ └── Makefile │ ├── kismet-manuf-database │ │ └── Makefile │ ├── kismet-tools │ │ └── Makefile │ ├── kismet.mk │ ├── kismet │ │ ├── Makefile │ │ └── files │ │ │ └── kismet_package.conf │ ├── python3-protobuf │ │ └── Makefile │ └── python3-websockets │ │ └── Makefile ├── mdk4 │ ├── Config.in │ └── Makefile ├── mtr │ └── Makefile └── sslsplit │ └── Makefile └── utils └── mk7led ├── Makefile └── src └── mk7led.c /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hak5 WiFi Pineapple Mark VII Community Packages 2 | 3 | -------------------------------------------------------------------------------- /libs/protobuf-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/libs/protobuf-c/Makefile -------------------------------------------------------------------------------- /libs/protobuf-c/patches/010-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/libs/protobuf-c/patches/010-pkgconfig.patch -------------------------------------------------------------------------------- /net/hcxdumptool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/hcxdumptool/Makefile -------------------------------------------------------------------------------- /net/hcxdumptool/patches/010-openssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/hcxdumptool/patches/010-openssl.patch -------------------------------------------------------------------------------- /net/hcxdumptool/patches/020-stdout.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/hcxdumptool/patches/020-stdout.patch -------------------------------------------------------------------------------- /net/hcxtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/hcxtools/Makefile -------------------------------------------------------------------------------- /net/hcxtools/patches/010-openssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/hcxtools/patches/010-openssl.patch -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-linux-bluetooth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-linux-bluetooth/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-linux-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-linux-wifi/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-nrf-51822/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-nrf-51822/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-nrf-52840/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-nrf-52840/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-nxp-kw41z/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-nxp-kw41z/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-rz-killerbee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-rz-killerbee/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-sdr-rtl433/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-sdr-rtl433/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-sdr-rtladsb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-sdr-rtladsb/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-sdr-rtlamr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-sdr-rtlamr/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-ti-cc2531/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-ti-cc2531/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-capture-ti-cc2540/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-capture-ti-cc2540/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-icao-database/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-icao-database/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-manuf-database/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-manuf-database/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet-tools/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet.mk -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/kismet/files/kismet_package.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/kismet/files/kismet_package.conf -------------------------------------------------------------------------------- /net/kismet-openwrt/python3-protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/python3-protobuf/Makefile -------------------------------------------------------------------------------- /net/kismet-openwrt/python3-websockets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/kismet-openwrt/python3-websockets/Makefile -------------------------------------------------------------------------------- /net/mdk4/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/mdk4/Config.in -------------------------------------------------------------------------------- /net/mdk4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/mdk4/Makefile -------------------------------------------------------------------------------- /net/mtr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/mtr/Makefile -------------------------------------------------------------------------------- /net/sslsplit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/net/sslsplit/Makefile -------------------------------------------------------------------------------- /utils/mk7led/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/utils/mk7led/Makefile -------------------------------------------------------------------------------- /utils/mk7led/src/mk7led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hak5/pineapple-community-packages/HEAD/utils/mk7led/src/mk7led.c --------------------------------------------------------------------------------