I hereby claim:
- I am t31m on github.
- I am t31m (https://keybase.io/t31m) on keybase.
- I have a public key whose fingerprint is BA6F EE0B C979 AC65 F5E5 8537 B853 0C94 22FD 9124
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #Basic Static Analysis of an Android App | |
| #discovers modules and their exports | |
| #by T31M | |
| import frida, sys, os | |
| PACKAGE_NAME = "" | |
| session = frida.get_usb_device().attach(PACKAGE_NAME) |
| #Hooking SafetyNet stuff for fun (no profit tho :( ) | |
| #Several Functions just uncomment to use or modify :) | |
| #by T31M | |
| import frida | |
| import sys | |
| PACKAGE_NAME = "com.nianticlabs.pokemongo" | |
| process = frida.get_usb_device().attach(PACKAGE_NAME) |
| from fabric import SerialGroup | |
| from fabric import Connection | |
| from invoke.exceptions import Exit | |
| from loguru import logger | |
| hosts_provider_a = [ | |
| "hostnames", | |
| "in", | |
| "your", | |
| "/etc/hosts", |
adb is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !