└── binary-encryption ├── burneye-stripped ├── QUICKSTART-README ├── README-SOURCE-DISTRIBUTION ├── patches │ ├── README │ ├── binutils-patch.h │ └── gdb-patch.h └── src │ ├── Makefile │ ├── burneye.c │ ├── common.c │ ├── common.h │ ├── debug │ ├── README │ └── memdump.c │ └── stub │ ├── Makefile │ ├── helper.c │ ├── helper.h │ ├── include │ ├── int80.h │ └── unistd.h │ ├── init.asm │ ├── snprintf.c │ ├── stub.c │ ├── stub.lds │ ├── stubhdr.h │ └── utils │ ├── Makefile │ ├── hdump.c │ └── sstrip.c ├── dacryfile ├── Makefile ├── README ├── README.FIRST ├── demo │ └── demo.sh ├── include │ ├── dl_libv2.h │ └── rc4.h ├── linux │ ├── Makefile │ ├── dl_libv2.c │ ├── dl_libv2.h │ └── start.S ├── make.params ├── obj │ └── Makefile ├── src │ ├── Makefile │ ├── rc4.c │ └── vx_main.c └── util │ ├── Makefile │ ├── encrypt.c │ ├── inject.c │ └── util.c └── load.c /binary-encryption/burneye-stripped/QUICKSTART-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/QUICKSTART-README -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/README-SOURCE-DISTRIBUTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/README-SOURCE-DISTRIBUTION -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/patches/README -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/patches/binutils-patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/patches/binutils-patch.h -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/patches/gdb-patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/patches/gdb-patch.h -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/Makefile -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/burneye.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/burneye.c -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/common.c -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/common.h -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/debug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/debug/README -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/debug/memdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/debug/memdump.c -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/Makefile -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/helper.c -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/helper.h -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/include/int80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/include/int80.h -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/include/unistd.h -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/init.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/init.asm -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/snprintf.c -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/stub.c -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/stub.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/stub.lds -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/stubhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/stubhdr.h -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/utils/Makefile -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/utils/hdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/utils/hdump.c -------------------------------------------------------------------------------- /binary-encryption/burneye-stripped/src/stub/utils/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/burneye-stripped/src/stub/utils/sstrip.c -------------------------------------------------------------------------------- /binary-encryption/dacryfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/Makefile -------------------------------------------------------------------------------- /binary-encryption/dacryfile/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/README -------------------------------------------------------------------------------- /binary-encryption/dacryfile/README.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/README.FIRST -------------------------------------------------------------------------------- /binary-encryption/dacryfile/demo/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/demo/demo.sh -------------------------------------------------------------------------------- /binary-encryption/dacryfile/include/dl_libv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/include/dl_libv2.h -------------------------------------------------------------------------------- /binary-encryption/dacryfile/include/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/include/rc4.h -------------------------------------------------------------------------------- /binary-encryption/dacryfile/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/linux/Makefile -------------------------------------------------------------------------------- /binary-encryption/dacryfile/linux/dl_libv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/linux/dl_libv2.c -------------------------------------------------------------------------------- /binary-encryption/dacryfile/linux/dl_libv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/linux/dl_libv2.h -------------------------------------------------------------------------------- /binary-encryption/dacryfile/linux/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/linux/start.S -------------------------------------------------------------------------------- /binary-encryption/dacryfile/make.params: -------------------------------------------------------------------------------- 1 | CC = gcc 2 | CFLAGS = -O 3 | -------------------------------------------------------------------------------- /binary-encryption/dacryfile/obj/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/obj/Makefile -------------------------------------------------------------------------------- /binary-encryption/dacryfile/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/src/Makefile -------------------------------------------------------------------------------- /binary-encryption/dacryfile/src/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/src/rc4.c -------------------------------------------------------------------------------- /binary-encryption/dacryfile/src/vx_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/src/vx_main.c -------------------------------------------------------------------------------- /binary-encryption/dacryfile/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/util/Makefile -------------------------------------------------------------------------------- /binary-encryption/dacryfile/util/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/util/encrypt.c -------------------------------------------------------------------------------- /binary-encryption/dacryfile/util/inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/util/inject.c -------------------------------------------------------------------------------- /binary-encryption/dacryfile/util/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/dacryfile/util/util.c -------------------------------------------------------------------------------- /binary-encryption/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packz/binary-encryption/HEAD/binary-encryption/load.c --------------------------------------------------------------------------------