Skip to content

Instantly share code, notes, and snippets.

@obfusk
Last active February 26, 2023 03:13
Show Gist options
  • Save obfusk/58a6e9735eb7a86ce5a5fd6ec69c725d to your computer and use it in GitHub Desktop.
Save obfusk/58a6e9735eb7a86ce5a5fd6ec69c725d to your computer and use it in GitHub Desktop.
show ARSC string pool using androguard
#!/usr/bin/python3
import sys
from androguard.core.bytecodes import apk
with open(sys.argv[1], "rb") as fh:
data = fh.read()
apk.ARSCParser(data).stringpool_main.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment