├── Class Library ├── Class Library.vcxproj └── Class Library.vcxproj.filters ├── Executable ├── Executable.vcxproj ├── Executable.vcxproj.filters ├── app.ico └── app.rc ├── LICENSE ├── MiniDumpDotNet.sln ├── NOTICE ├── README.md ├── screenshots ├── binary_execution.png ├── cobalt_strike_execution.png ├── covenant_execution.png ├── jscript_after_dump.png ├── jscript_before_dump.png ├── jscript_update.png ├── mimikatz_offline.png ├── powershell_execution.png └── vs_build.png └── source ├── AssemblyInfo.cpp ├── externs.h ├── main.cpp ├── minidump.cpp ├── minidump.h ├── modules.cpp ├── types.h ├── utils.cpp └── utils.h /Class Library/Class Library.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/Class Library/Class Library.vcxproj -------------------------------------------------------------------------------- /Class Library/Class Library.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/Class Library/Class Library.vcxproj.filters -------------------------------------------------------------------------------- /Executable/Executable.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/Executable/Executable.vcxproj -------------------------------------------------------------------------------- /Executable/Executable.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/Executable/Executable.vcxproj.filters -------------------------------------------------------------------------------- /Executable/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/Executable/app.ico -------------------------------------------------------------------------------- /Executable/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/Executable/app.rc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/LICENSE -------------------------------------------------------------------------------- /MiniDumpDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/MiniDumpDotNet.sln -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/binary_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/binary_execution.png -------------------------------------------------------------------------------- /screenshots/cobalt_strike_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/cobalt_strike_execution.png -------------------------------------------------------------------------------- /screenshots/covenant_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/covenant_execution.png -------------------------------------------------------------------------------- /screenshots/jscript_after_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/jscript_after_dump.png -------------------------------------------------------------------------------- /screenshots/jscript_before_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/jscript_before_dump.png -------------------------------------------------------------------------------- /screenshots/jscript_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/jscript_update.png -------------------------------------------------------------------------------- /screenshots/mimikatz_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/mimikatz_offline.png -------------------------------------------------------------------------------- /screenshots/powershell_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/powershell_execution.png -------------------------------------------------------------------------------- /screenshots/vs_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/screenshots/vs_build.png -------------------------------------------------------------------------------- /source/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/AssemblyInfo.cpp -------------------------------------------------------------------------------- /source/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/externs.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/minidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/minidump.cpp -------------------------------------------------------------------------------- /source/minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/minidump.h -------------------------------------------------------------------------------- /source/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/modules.cpp -------------------------------------------------------------------------------- /source/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/types.h -------------------------------------------------------------------------------- /source/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/utils.cpp -------------------------------------------------------------------------------- /source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhiteOakSecurity/MiniDumpDotNet/HEAD/source/utils.h --------------------------------------------------------------------------------