├── .gitignore ├── LICENSE ├── README.md ├── Veracrypt Password Logger.sln └── Veracrypt Password Logger ├── MinHook ├── .gitkeep ├── include │ └── MinHook.h └── src │ ├── HDE │ ├── hde32.c │ ├── hde32.h │ ├── hde64.c │ ├── hde64.h │ ├── pstdint.h │ ├── table32.h │ └── table64.h │ ├── buffer.c │ ├── buffer.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── ReadMe.txt ├── Veracrypt Password Logger.cpp ├── Veracrypt Password Logger.vcxproj ├── Veracrypt Password Logger.vcxproj.filters ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/README.md -------------------------------------------------------------------------------- /Veracrypt Password Logger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger.sln -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/include/MinHook.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/HDE/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/HDE/hde32.c -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/HDE/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/HDE/hde32.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/HDE/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/HDE/hde64.c -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/HDE/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/HDE/hde64.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/HDE/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/HDE/pstdint.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/HDE/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/HDE/table32.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/HDE/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/HDE/table64.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/buffer.c -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/buffer.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/hook.c -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/trampoline.c -------------------------------------------------------------------------------- /Veracrypt Password Logger/MinHook/src/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/MinHook/src/trampoline.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/ReadMe.txt -------------------------------------------------------------------------------- /Veracrypt Password Logger/Veracrypt Password Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/Veracrypt Password Logger.cpp -------------------------------------------------------------------------------- /Veracrypt Password Logger/Veracrypt Password Logger.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/Veracrypt Password Logger.vcxproj -------------------------------------------------------------------------------- /Veracrypt Password Logger/Veracrypt Password Logger.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/Veracrypt Password Logger.vcxproj.filters -------------------------------------------------------------------------------- /Veracrypt Password Logger/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/dllmain.cpp -------------------------------------------------------------------------------- /Veracrypt Password Logger/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/stdafx.cpp -------------------------------------------------------------------------------- /Veracrypt Password Logger/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/stdafx.h -------------------------------------------------------------------------------- /Veracrypt Password Logger/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/D4stiny/Veracrypt-Password-Extractor/HEAD/Veracrypt Password Logger/targetver.h --------------------------------------------------------------------------------