kdbg

Kdbg doesn't allow inspection of contents of std::string or std::vector

I'm using Kdbg as my debugging tool for routine purposes, but it doesn't appear to have any way to inspect the contents of a std::string or std::vector. This is a bit of a drawback as use of the standard library is definitely the Approved Way. Does anyone know how to make it do this, or does anyone know of a GUI debugger that does? (Kdb...

Altering registers, IP while stepping in kdbg

I'm single-stepping through 64-bit intel opcodes using kdbg. I'd like to alter the contents of RAX, etc and repeat a sequence of opcodes - by altering RIP or otherwise telling it continue execution from some point. Is this possible? Of course I've browsed all the kdbg documentation i could find. ...