1.1.2 • Published 5 years ago

frida-cpp v1.1.2

Weekly downloads
2
License
GPL-3.0-or-later
Repository
github
Last release
5 years ago

frida-cpp

Inspect C++ code and STL objects with Frida

Features

Introspection for the following STL classes of MSVC:

  • std::string (StdString)
  • std::vector (StdVector)
  • std::deque (StdDeque)

Example

import { StdString } from "frida-cpp";
console.log(new StdString(ptr(0x1337)));