├── .gitignore ├── DEVELOPERS.md ├── LICENSE ├── README.md ├── generic ├── Makefile └── evil.c ├── install_backdoor.sh └── platform └── ubuntu └── 16.04 ├── backdoor.sh └── install.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/README.md -------------------------------------------------------------------------------- /generic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/generic/Makefile -------------------------------------------------------------------------------- /generic/evil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/generic/evil.c -------------------------------------------------------------------------------- /install_backdoor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/install_backdoor.sh -------------------------------------------------------------------------------- /platform/ubuntu/16.04/backdoor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/platform/ubuntu/16.04/backdoor.sh -------------------------------------------------------------------------------- /platform/ubuntu/16.04/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxxxie/de-LUKS/HEAD/platform/ubuntu/16.04/install.sh --------------------------------------------------------------------------------