├── .gitignore ├── LICENSE ├── README.md ├── doc ├── Makefile ├── beamercolorthemeQE.sty ├── beamerfontthemeQE.sty ├── beamerinnerthemeQE.sty ├── beamerouterthemeQE.sty ├── beamerthemeQE.sty ├── final.md ├── final.pdf ├── gfx │ ├── BackgroundDarkBlue.pdf │ ├── BackgroundLightBlue.pdf │ ├── bottomwave.pdf │ ├── dafuq.jpg │ ├── kernel.png │ ├── kernel_map.png │ ├── problems.jpg │ ├── qrcode.png │ ├── qsp.png │ ├── rootkit.jpg │ └── uibk_text.pdf ├── midterm.md ├── midterm.pdf └── tpl.tex ├── src ├── Makefile ├── config.h ├── filehider.c ├── filehider.h ├── helper.c ├── helper.h ├── hijack.c ├── hijack.h ├── logging.h ├── lsmodhider.c ├── lsmodhider.h ├── main.c ├── pidhider.c ├── pidhider.h ├── procfile.c ├── procfile.h ├── sockethider.c └── sockethider.h └── util ├── backdoor ├── Makefile ├── client.go ├── gen.go └── server.go └── getroot ├── Makefile └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/beamercolorthemeQE.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/beamercolorthemeQE.sty -------------------------------------------------------------------------------- /doc/beamerfontthemeQE.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/beamerfontthemeQE.sty -------------------------------------------------------------------------------- /doc/beamerinnerthemeQE.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/beamerinnerthemeQE.sty -------------------------------------------------------------------------------- /doc/beamerouterthemeQE.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/beamerouterthemeQE.sty -------------------------------------------------------------------------------- /doc/beamerthemeQE.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/beamerthemeQE.sty -------------------------------------------------------------------------------- /doc/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/final.md -------------------------------------------------------------------------------- /doc/final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/final.pdf -------------------------------------------------------------------------------- /doc/gfx/BackgroundDarkBlue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/BackgroundDarkBlue.pdf -------------------------------------------------------------------------------- /doc/gfx/BackgroundLightBlue.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/BackgroundLightBlue.pdf -------------------------------------------------------------------------------- /doc/gfx/bottomwave.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/bottomwave.pdf -------------------------------------------------------------------------------- /doc/gfx/dafuq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/dafuq.jpg -------------------------------------------------------------------------------- /doc/gfx/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/kernel.png -------------------------------------------------------------------------------- /doc/gfx/kernel_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/kernel_map.png -------------------------------------------------------------------------------- /doc/gfx/problems.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/problems.jpg -------------------------------------------------------------------------------- /doc/gfx/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/qrcode.png -------------------------------------------------------------------------------- /doc/gfx/qsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/qsp.png -------------------------------------------------------------------------------- /doc/gfx/rootkit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/rootkit.jpg -------------------------------------------------------------------------------- /doc/gfx/uibk_text.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/gfx/uibk_text.pdf -------------------------------------------------------------------------------- /doc/midterm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/midterm.md -------------------------------------------------------------------------------- /doc/midterm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/midterm.pdf -------------------------------------------------------------------------------- /doc/tpl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/doc/tpl.tex -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/config.h -------------------------------------------------------------------------------- /src/filehider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/filehider.c -------------------------------------------------------------------------------- /src/filehider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/filehider.h -------------------------------------------------------------------------------- /src/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/helper.c -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/hijack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/hijack.c -------------------------------------------------------------------------------- /src/hijack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/hijack.h -------------------------------------------------------------------------------- /src/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/logging.h -------------------------------------------------------------------------------- /src/lsmodhider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/lsmodhider.c -------------------------------------------------------------------------------- /src/lsmodhider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/lsmodhider.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/main.c -------------------------------------------------------------------------------- /src/pidhider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/pidhider.c -------------------------------------------------------------------------------- /src/pidhider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/pidhider.h -------------------------------------------------------------------------------- /src/procfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/procfile.c -------------------------------------------------------------------------------- /src/procfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/procfile.h -------------------------------------------------------------------------------- /src/sockethider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/sockethider.c -------------------------------------------------------------------------------- /src/sockethider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/src/sockethider.h -------------------------------------------------------------------------------- /util/backdoor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/util/backdoor/Makefile -------------------------------------------------------------------------------- /util/backdoor/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/util/backdoor/client.go -------------------------------------------------------------------------------- /util/backdoor/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/util/backdoor/gen.go -------------------------------------------------------------------------------- /util/backdoor/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/util/backdoor/server.go -------------------------------------------------------------------------------- /util/getroot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/util/getroot/Makefile -------------------------------------------------------------------------------- /util/getroot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W4RH4WK/THOR/HEAD/util/getroot/main.c --------------------------------------------------------------------------------