https://github.com/mrmtwoj/frida_list
https://github.com/mrmtwoj/frida_list
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrmtwoj/frida_list
- Owner: mrmtwoj
- Created: 2022-02-10T10:43:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-28T10:39:52.000Z (over 3 years ago)
- Last Synced: 2024-12-29T23:54:18.313Z (over 1 year ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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