Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update and fix issue #85 #92

Merged
merged 2 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,5 @@ dmypy.json
.DS_Store
*.ipa
*.zip

py-env
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
## Compatible with
| iOS | Frida | Frida-tools | Supported |
| -------- | ------- | ----------- |----------------- |
| 15.7.1 | 16.0.7 | 12.0.4 | :white_check_mark:|
| 15.7.4 | 16.1.3 | 12.2.1 | :white_check_mark:|

## Feature

Expand Down Expand Up @@ -134,7 +134,7 @@ If you run the script but it doesn't work, you can try the following:
|Frida iOS Hook | Basic Usage | Install - List devices - List apps - List scripts - Logcat - Shell|[https://youtu.be/xSndHgTdv4w](https://youtu.be/xSndHgTdv4w)|
|Frida iOS Hook | Basic Usage | Dump Decrypt IPA - Dump Memory App - Hexbyte-Scan IPA|[https://youtu.be/AUsJ9_gnWAI](https://youtu.be/AUsJ9_gnWAI)|
|Frida iOS Hook | Basic Usage | App Static - Bypass Jailbreak - Bypass SSL - Intercept URL + Crypto|[https://youtu.be/nWhKDSzArf8](https://youtu.be/nWhKDSzArf8)|

|Frida iOS Hook | Advance Usage | Memory Dump - Radare2 - Iaito|[https://youtu.be/nUqE4EYWiEc](https://youtu.be/nUqE4EYWiEc)|
## Frida-Script

Updated some frida scripts to help you with the pentest ios app. Filter script using spawn(S) or attach(A)
Expand Down
2 changes: 1 addition & 1 deletion frida-ios-hook/core/hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def main():
logger.info('[*] Attaching: ' + options.name)
logger.info('[*] Script: ' + options.script)
time.sleep(2)
process = frida.get_usb_device().attach("Calculator")
process = frida.get_usb_device().attach(options.name)
hook = open(options.script, 'r')
script = process.create_script(hook.read())
script.load()
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
colorlog==6.7.0
frida==16.0.7
frida-tools==12.0.4
frida==16.1.3
frida-tools==12.2.1
scp==0.14.4
requests==2.28.1
requests==2.31.0
paramiko==2.11.0
tqdm==4.64.1
psutil
Expand Down
Loading