An open API service indexing awesome lists of open source software.

https://github.com/mrmtwoj/frida_list


https://github.com/mrmtwoj/frida_list

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# Frida Help List
## Install Frida
```sh
pip install frida-tools
```
## ❤
https://frida.re/docs/home/

## Hook In PackageName
```sh
frida -U -f [.comPackageName] -l [nameScript.js] --no-pause
```

> Note:
`[.comPackageName]` frida-ps -U or View in apk Code use (jadx)
`[nameScript.js]` this javaScript code
https://github.com/skylot/jadx/releases

## Hook In Process
```sh
frida -U -l [nameScript.js] -p [2305]
```
> Note:
`[.2305]` adb shell > ps
`[nameScript.js]` this javaScript code

## Hook AES And Convert VI , SECURITY CODE (use python , string.hex())
```python
python > b'dwc512w1d321wf74w5c4vwdcdxw32fd32w4f'.hex();
```

## ADB RUN PAGE (Activity)
adb shell am start -n android.app.com.bazar/android.app.com.bazar.ui.activity.login.LoginActivity