├── common-gopher-tcp-stream ├── .gitignore ├── Makefile ├── README.md ├── common.c ├── common.h ├── config.h ├── parse.c ├── parse.h └── sniffer.c ├── linux-kernel-exploits └── CVE-2019-13272 │ ├── 2019-07-30-142152_998x416_scrot.png │ └── CVE-2019-13272.c └── redis-over-gopher ├── .gitignore ├── README.md ├── redis-over-gopher.py └── redis.cmd /common-gopher-tcp-stream/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | sniffer 3 | x 4 | -------------------------------------------------------------------------------- /common-gopher-tcp-stream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/Makefile -------------------------------------------------------------------------------- /common-gopher-tcp-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/README.md -------------------------------------------------------------------------------- /common-gopher-tcp-stream/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/common.c -------------------------------------------------------------------------------- /common-gopher-tcp-stream/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/common.h -------------------------------------------------------------------------------- /common-gopher-tcp-stream/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/config.h -------------------------------------------------------------------------------- /common-gopher-tcp-stream/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/parse.c -------------------------------------------------------------------------------- /common-gopher-tcp-stream/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/parse.h -------------------------------------------------------------------------------- /common-gopher-tcp-stream/sniffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/common-gopher-tcp-stream/sniffer.c -------------------------------------------------------------------------------- /linux-kernel-exploits/CVE-2019-13272/2019-07-30-142152_998x416_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/linux-kernel-exploits/CVE-2019-13272/2019-07-30-142152_998x416_scrot.png -------------------------------------------------------------------------------- /linux-kernel-exploits/CVE-2019-13272/CVE-2019-13272.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/linux-kernel-exploits/CVE-2019-13272/CVE-2019-13272.c -------------------------------------------------------------------------------- /redis-over-gopher/.gitignore: -------------------------------------------------------------------------------- 1 | *.rdb 2 | -------------------------------------------------------------------------------- /redis-over-gopher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/redis-over-gopher/README.md -------------------------------------------------------------------------------- /redis-over-gopher/redis-over-gopher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/redis-over-gopher/redis-over-gopher.py -------------------------------------------------------------------------------- /redis-over-gopher/redis.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebroo/sec_tools/HEAD/redis-over-gopher/redis.cmd --------------------------------------------------------------------------------