Skip to content

Instantly share code, notes, and snippets.

@Robert-Cunningham
Created May 9, 2020 03:06
Show Gist options
  • Save Robert-Cunningham/dae45822e87df2ae4f1f0546afae2ae3 to your computer and use it in GitHub Desktop.
Save Robert-Cunningham/dae45822e87df2ae4f1f0546afae2ae3 to your computer and use it in GitHub Desktop.
Show all loaded classes with Frida
Java.enumerateLoadedClassesSync().map(function (a) {
if (a.includes('your_package')) {
console.log(a)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment