├── CMakeLists.txt ├── LICENSE ├── README.md ├── computeChecksums ├── CMakeLists.txt └── src │ ├── computeChecksums.cpp │ ├── crc32.c │ └── crc32.h ├── cryptor ├── CMakeLists.txt └── src │ └── cryptor.cpp ├── encryptFunctions ├── CMakeLists.txt └── src │ ├── encryptFunctions.cpp │ ├── rc4.c │ └── rc4.h ├── fakeHeadersXBit ├── CMakeLists.txt └── src │ ├── .fakeHeaders.cpp.kate-swp │ └── fakeHeadersXBit.cpp ├── madvise ├── CMakeLists.txt └── src │ └── madvise.cpp ├── stripBinary ├── CMakeLists.txt └── src │ └── stripBinary.cpp └── trouble ├── CMakeLists.txt ├── src ├── crc32.c ├── crc32.h ├── rc4.c ├── rc4.h ├── trouble.c └── xor_string.h └── trouble_layout.lds /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/README.md -------------------------------------------------------------------------------- /computeChecksums/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/computeChecksums/CMakeLists.txt -------------------------------------------------------------------------------- /computeChecksums/src/computeChecksums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/computeChecksums/src/computeChecksums.cpp -------------------------------------------------------------------------------- /computeChecksums/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/computeChecksums/src/crc32.c -------------------------------------------------------------------------------- /computeChecksums/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/computeChecksums/src/crc32.h -------------------------------------------------------------------------------- /cryptor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/cryptor/CMakeLists.txt -------------------------------------------------------------------------------- /cryptor/src/cryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/cryptor/src/cryptor.cpp -------------------------------------------------------------------------------- /encryptFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/encryptFunctions/CMakeLists.txt -------------------------------------------------------------------------------- /encryptFunctions/src/encryptFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/encryptFunctions/src/encryptFunctions.cpp -------------------------------------------------------------------------------- /encryptFunctions/src/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/encryptFunctions/src/rc4.c -------------------------------------------------------------------------------- /encryptFunctions/src/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/encryptFunctions/src/rc4.h -------------------------------------------------------------------------------- /fakeHeadersXBit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/fakeHeadersXBit/CMakeLists.txt -------------------------------------------------------------------------------- /fakeHeadersXBit/src/.fakeHeaders.cpp.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/fakeHeadersXBit/src/.fakeHeaders.cpp.kate-swp -------------------------------------------------------------------------------- /fakeHeadersXBit/src/fakeHeadersXBit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/fakeHeadersXBit/src/fakeHeadersXBit.cpp -------------------------------------------------------------------------------- /madvise/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/madvise/CMakeLists.txt -------------------------------------------------------------------------------- /madvise/src/madvise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/madvise/src/madvise.cpp -------------------------------------------------------------------------------- /stripBinary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/stripBinary/CMakeLists.txt -------------------------------------------------------------------------------- /stripBinary/src/stripBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/stripBinary/src/stripBinary.cpp -------------------------------------------------------------------------------- /trouble/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/CMakeLists.txt -------------------------------------------------------------------------------- /trouble/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/src/crc32.c -------------------------------------------------------------------------------- /trouble/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/src/crc32.h -------------------------------------------------------------------------------- /trouble/src/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/src/rc4.c -------------------------------------------------------------------------------- /trouble/src/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/src/rc4.h -------------------------------------------------------------------------------- /trouble/src/trouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/src/trouble.c -------------------------------------------------------------------------------- /trouble/src/xor_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/src/xor_string.h -------------------------------------------------------------------------------- /trouble/trouble_layout.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antire-book/dont_panic/HEAD/trouble/trouble_layout.lds --------------------------------------------------------------------------------