├── Makefile ├── README.md ├── exploit.c └── include ├── bpf.h ├── config.h ├── debug.h └── helper.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3ee/CVE-2022-23222/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3ee/CVE-2022-23222/HEAD/README.md -------------------------------------------------------------------------------- /exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3ee/CVE-2022-23222/HEAD/exploit.c -------------------------------------------------------------------------------- /include/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3ee/CVE-2022-23222/HEAD/include/bpf.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3ee/CVE-2022-23222/HEAD/include/config.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3ee/CVE-2022-23222/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3ee/CVE-2022-23222/HEAD/include/helper.h --------------------------------------------------------------------------------