Skip to content

Commit 9d58d54

Browse files
authored
Update 2025-10-07-iOS-All-The-Things-Part-IV.md
1 parent 3bbcf5f commit 9d58d54

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

_posts/2025-10-07-iOS-All-The-Things-Part-IV.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
date: 2025-10-09 06:58:15
2+
date: 2025-10-09 07:13:15
33
layout: post
44
title: iOS All The Things - Part IV
55

@@ -273,7 +273,7 @@ b. Dylib Risks
273273
We can use frida script to monitor dylib loading:
274274

275275
```javascript
276-
# Real-time interception of library loading
276+
// Real-time interception of library loading
277277
Interceptor.attach(Module.findExportByName(null, "dlopen"), {
278278
onEnter: function(args) {
279279
var path = args[0].readCString();
@@ -342,12 +342,12 @@ c. Library Permissions Analysis
342342
});
343343
```
344344
345-
* Permission Audit:
345+
* Permission Audit:
346346
347-
```bash
348-
# Compare app vs library entitlements
349-
diff app_entitlements.plist analytics_entitlements.plist
350-
```
347+
```bash
348+
# Compare app vs library entitlements
349+
diff app_entitlements.plist analytics_entitlements.plist
350+
```
351351
352352
**Remediation Recommendations**
353353

0 commit comments

Comments
 (0)