├── LICENSE ├── Makefile ├── README.md ├── experiment1.sh ├── experiment3.sh ├── experiment4.sh ├── include ├── bcme.h ├── local_wrapper.h ├── macros.inc ├── nex_phy_int.h ├── rxhdrlen.h ├── sample_collect.h ├── signalgeneration.h └── vendor_radiotap.h ├── patch.ld └── src ├── csi_extraction.c ├── ioctl.c ├── ioctl_4xx.c ├── ioctl_5xx.c ├── ioctl_6xx.c ├── ioctl_7xx.c ├── ioctl_8xx.c ├── local_wrapper.c ├── monitormode.c ├── patch.c ├── regulations.c ├── rxhdrlen.c ├── sendframe.c ├── signalgeneration.c ├── txpwr_exp.c ├── ucode-fixed-counters.patch ├── ucode-forever-delay.patch ├── ucode-forever-fixed.patch ├── ucode-forgedack-message-sctr-loop.patch ├── ucode-forgedack-message-sctr.patch ├── ucode-forgedack-sctr.patch ├── vendor_radiotap.c └── version.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/README.md -------------------------------------------------------------------------------- /experiment1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/experiment1.sh -------------------------------------------------------------------------------- /experiment3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/experiment3.sh -------------------------------------------------------------------------------- /experiment4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/experiment4.sh -------------------------------------------------------------------------------- /include/bcme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/bcme.h -------------------------------------------------------------------------------- /include/local_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/local_wrapper.h -------------------------------------------------------------------------------- /include/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/macros.inc -------------------------------------------------------------------------------- /include/nex_phy_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/nex_phy_int.h -------------------------------------------------------------------------------- /include/rxhdrlen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/rxhdrlen.h -------------------------------------------------------------------------------- /include/sample_collect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/sample_collect.h -------------------------------------------------------------------------------- /include/signalgeneration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/signalgeneration.h -------------------------------------------------------------------------------- /include/vendor_radiotap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/include/vendor_radiotap.h -------------------------------------------------------------------------------- /patch.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/patch.ld -------------------------------------------------------------------------------- /src/csi_extraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/csi_extraction.c -------------------------------------------------------------------------------- /src/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ioctl.c -------------------------------------------------------------------------------- /src/ioctl_4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ioctl_4xx.c -------------------------------------------------------------------------------- /src/ioctl_5xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ioctl_5xx.c -------------------------------------------------------------------------------- /src/ioctl_6xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ioctl_6xx.c -------------------------------------------------------------------------------- /src/ioctl_7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ioctl_7xx.c -------------------------------------------------------------------------------- /src/ioctl_8xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ioctl_8xx.c -------------------------------------------------------------------------------- /src/local_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/local_wrapper.c -------------------------------------------------------------------------------- /src/monitormode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/monitormode.c -------------------------------------------------------------------------------- /src/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/patch.c -------------------------------------------------------------------------------- /src/regulations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/regulations.c -------------------------------------------------------------------------------- /src/rxhdrlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/rxhdrlen.c -------------------------------------------------------------------------------- /src/sendframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/sendframe.c -------------------------------------------------------------------------------- /src/signalgeneration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/signalgeneration.c -------------------------------------------------------------------------------- /src/txpwr_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/txpwr_exp.c -------------------------------------------------------------------------------- /src/ucode-fixed-counters.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ucode-fixed-counters.patch -------------------------------------------------------------------------------- /src/ucode-forever-delay.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ucode-forever-delay.patch -------------------------------------------------------------------------------- /src/ucode-forever-fixed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ucode-forever-fixed.patch -------------------------------------------------------------------------------- /src/ucode-forgedack-message-sctr-loop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ucode-forgedack-message-sctr-loop.patch -------------------------------------------------------------------------------- /src/ucode-forgedack-message-sctr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ucode-forgedack-message-sctr.patch -------------------------------------------------------------------------------- /src/ucode-forgedack-sctr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/ucode-forgedack-sctr.patch -------------------------------------------------------------------------------- /src/vendor_radiotap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/vendor_radiotap.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seemoo-lab/mobisys2018_nexmon_covert_channel/HEAD/src/version.c --------------------------------------------------------------------------------