├── .gitignore ├── LICENSE ├── README.md ├── ZDI-22-1118 ├── README.md └── exploit.c ├── chain-active ├── README.md ├── build.sh ├── chain-active ├── dummy ├── ex.sh ├── exploit.c ├── monke ├── monke.c ├── pack.sh └── x └── rule-id-lookup ├── README.md ├── common.h └── exploit.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/README.md -------------------------------------------------------------------------------- /ZDI-22-1118/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/ZDI-22-1118/README.md -------------------------------------------------------------------------------- /ZDI-22-1118/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/ZDI-22-1118/exploit.c -------------------------------------------------------------------------------- /chain-active/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/README.md -------------------------------------------------------------------------------- /chain-active/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/build.sh -------------------------------------------------------------------------------- /chain-active/chain-active: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/chain-active -------------------------------------------------------------------------------- /chain-active/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/dummy -------------------------------------------------------------------------------- /chain-active/ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/ex.sh -------------------------------------------------------------------------------- /chain-active/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/exploit.c -------------------------------------------------------------------------------- /chain-active/monke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/monke -------------------------------------------------------------------------------- /chain-active/monke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/monke.c -------------------------------------------------------------------------------- /chain-active/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/pack.sh -------------------------------------------------------------------------------- /chain-active/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/chain-active/x -------------------------------------------------------------------------------- /rule-id-lookup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/rule-id-lookup/README.md -------------------------------------------------------------------------------- /rule-id-lookup/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/rule-id-lookup/common.h -------------------------------------------------------------------------------- /rule-id-lookup/exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kungfulon/nf-tables-lpe/HEAD/rule-id-lookup/exploit.cpp --------------------------------------------------------------------------------