0vercl0k / wtf

wtf is a distributed, code-coverage guided, customizable, cross-platform snapshot-based fuzzer designed for attacking user and / or kernel-mode targets running on Microsoft Windows and Linux user-mode (experimental!).
MIT License
1.47k stars 134 forks source link

Add support for loading raw VMWare snapshots #202

Open ea opened 6 months ago

ea commented 6 months ago

These patches simply add support for loading VMWare snapshots which are raw, linear, RAM dumps.

The change in the kdump parsers is simple, if the initial parsing fails, it opportunistically tries to load the file as a raw dump, else it continues into parsing different usual kdumps types.

The second part of the patch has to do with actually loading these where I had to relax a few warnings or errors, as there's no point in trying to enable a debugger on raw memory dumps.

To build the project with support for loading these VMWare dumps, there's a new build-release-vmware-support.bat script that enables the flags that relax the warnings.

I'll have a macOS/fuzzer target and an example workflow in a separate repository.

0vercl0k commented 5 months ago

Woot that's awesome!

As I have mentioned in private messages, give me some time to try to figure out what's the best way to do this that is shippable 🫡

Cheers