Tools for inspecting C++ code and STL objects with Frida
npm install frida-cppInspect C++ code and STL objects with Frida
Introspection for the following STL classes of MSVC:
* std::string (StdString)
* std::vector (StdVector)
* std::deque (StdDeque)
````
import { StdString } from "frida-cpp";
console.log(new StdString(ptr(0x1337)));