Skip to content

Commit d95d2f8

Browse files
authored
Update 2025-09-30-iOS-All-The-Things-Part-III.md
1 parent 599e2f4 commit d95d2f8

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

_posts/2025-09-30-iOS-All-The-Things-Part-III.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2025-10-01 00:33:15
2+
date: 2025-10-01 00:38:15
33
layout: post
44
title: iOS All The Things - Part III
55

@@ -83,27 +83,27 @@ frida -U -f com.highaltitudehacks.DVIAswiftv2 -n 'DVIA-v2'
8383

8484
![image](/assets/img/ios-pentesting/Part-III/methods-frida-trace.png)
8585

86-
```bash
87-
// -U: Connect to a USB device
88-
// -f: Spawn the app with this package name
89-
// -i: Trace functions containing "jailbreak" in their name
86+
```bash
87+
// -U: Connect to a USB device
88+
// -f: Spawn the app with this package name
89+
// -i: Trace functions containing "jailbreak" in their name
9090

91-
frida-trace -U -f com.highaltitudehacks.DVIAswiftv2 -i "*jailbreak*"
91+
frida-trace -U -f com.highaltitudehacks.DVIAswiftv2 -i "*jailbreak*"
9292

93-
// -m: To get all specific method
94-
// *: Enable pattern matching for function names
95-
// -n: Attach to the process with this name
93+
// -m: To get all specific method
94+
// *: Enable pattern matching for function names
95+
// -n: Attach to the process with this name
9696

97-
frida-trace -U -n "DVIA-v2" -m "*[jailbreak* *]"
98-
```
97+
frida-trace -U -n "DVIA-v2" -m "*[jailbreak* *]"
98+
```
9999

100100
* `frida-discover`: is a specialized tool in the Frida suite designed for automated function discovery in binaries and applications. It helps you find interesting functions to trace or hook when you don't know what you're looking for.
101101

102-
```bash
103-
// discover all classes and methods of the app
104-
// -U: Connect to a USB device
105-
// -n: Attach to the process with this name
102+
```bash
103+
// discover all classes and methods of the app
104+
// -U: Connect to a USB device
105+
// -n: Attach to the process with this name
106106

107-
frida-discover -U -n "DVIA-v2"
108-
```
107+
frida-discover -U -n "DVIA-v2"
108+
```
109109

0 commit comments

Comments
 (0)