├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── cpush.yml ├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── changelog ├── hcxcommic.c ├── hcxeiutool.c ├── hcxhash2cap.c ├── hcxhashtool.c ├── hcxpcapngtool.c ├── hcxpmktool.c ├── hcxpsktool.c ├── hcxwltool.c ├── include ├── byteops.c ├── fileops.c ├── fileops.h ├── gzops.c ├── gzops.h ├── hashcatops.c ├── hashcatops.h ├── hashops.c ├── hashops.h ├── hcxeiutool.h ├── hcxhash2cap.h ├── hcxhashtool.h ├── hcxpcapngtool.h ├── hcxpmktool.h ├── hcxpsktool.h ├── hcxwltool.h ├── ieee80211.c ├── ieee80211.h ├── johnops.c ├── pcap.c ├── pcap.h └── strings.c ├── license.txt ├── man └── hcxtools.1 ├── meson.build ├── meson_options.txt ├── usefulscripts ├── bulk_convert_hccapx2pcap.sh ├── hcxgrep.py ├── pireadcard └── piwritecard ├── whoismac.c └── wlancap2wpasec.c /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/cpush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/.github/workflows/cpush.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/README.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/changelog -------------------------------------------------------------------------------- /hcxcommic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxcommic.c -------------------------------------------------------------------------------- /hcxeiutool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxeiutool.c -------------------------------------------------------------------------------- /hcxhash2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxhash2cap.c -------------------------------------------------------------------------------- /hcxhashtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxhashtool.c -------------------------------------------------------------------------------- /hcxpcapngtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxpcapngtool.c -------------------------------------------------------------------------------- /hcxpmktool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxpmktool.c -------------------------------------------------------------------------------- /hcxpsktool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxpsktool.c -------------------------------------------------------------------------------- /hcxwltool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/hcxwltool.c -------------------------------------------------------------------------------- /include/byteops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/byteops.c -------------------------------------------------------------------------------- /include/fileops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/fileops.c -------------------------------------------------------------------------------- /include/fileops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/fileops.h -------------------------------------------------------------------------------- /include/gzops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/gzops.c -------------------------------------------------------------------------------- /include/gzops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/gzops.h -------------------------------------------------------------------------------- /include/hashcatops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hashcatops.c -------------------------------------------------------------------------------- /include/hashcatops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hashcatops.h -------------------------------------------------------------------------------- /include/hashops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hashops.c -------------------------------------------------------------------------------- /include/hashops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hashops.h -------------------------------------------------------------------------------- /include/hcxeiutool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hcxeiutool.h -------------------------------------------------------------------------------- /include/hcxhash2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hcxhash2cap.h -------------------------------------------------------------------------------- /include/hcxhashtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hcxhashtool.h -------------------------------------------------------------------------------- /include/hcxpcapngtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hcxpcapngtool.h -------------------------------------------------------------------------------- /include/hcxpmktool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hcxpmktool.h -------------------------------------------------------------------------------- /include/hcxpsktool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hcxpsktool.h -------------------------------------------------------------------------------- /include/hcxwltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/hcxwltool.h -------------------------------------------------------------------------------- /include/ieee80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/ieee80211.c -------------------------------------------------------------------------------- /include/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/ieee80211.h -------------------------------------------------------------------------------- /include/johnops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/johnops.c -------------------------------------------------------------------------------- /include/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/pcap.c -------------------------------------------------------------------------------- /include/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/pcap.h -------------------------------------------------------------------------------- /include/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/include/strings.c -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/license.txt -------------------------------------------------------------------------------- /man/hcxtools.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/man/hcxtools.1 -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/meson_options.txt -------------------------------------------------------------------------------- /usefulscripts/bulk_convert_hccapx2pcap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/usefulscripts/bulk_convert_hccapx2pcap.sh -------------------------------------------------------------------------------- /usefulscripts/hcxgrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/usefulscripts/hcxgrep.py -------------------------------------------------------------------------------- /usefulscripts/pireadcard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/usefulscripts/pireadcard -------------------------------------------------------------------------------- /usefulscripts/piwritecard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/usefulscripts/piwritecard -------------------------------------------------------------------------------- /whoismac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/whoismac.c -------------------------------------------------------------------------------- /wlancap2wpasec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZerBea/hcxtools/HEAD/wlancap2wpasec.c --------------------------------------------------------------------------------