Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 IPA Installation Techniques and Tools (by @NVISOSecurity) #3100
Update IPA Installation Techniques and Tools (by @NVISOSecurity) #3100
Changes from 10 commits
f3da3a7
566208d
d39142b
522c1af
f6f8dca
679e62e
e9ff817
d95283f
462784d
6ec2102
52dd898
e228714
ef4fabf
d28f7ae
2ce8cbd
a2611b6
90f5347
1d36e50
5f77407
7f02dd7
cc66983
8f8cc97
317b37e
697bc76
6710970
3d5bc8b
1441ca0
c9f9d73
ff73a79
4781846
bebc38e
58aab16
27b0adb
2929ad3
db19d8e
85d3825
3953ec9
182ab62
430b2c2
c062048
c48a380
902483e
333d4b3
2598a52
737fd3c
df46042
7455a17
86e14e1
594c86e
dd2b621
16af8ec
4943a76
ecda1d2
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TheDauntless I see that iOS 17 requires you to attach a debugger first to use the Gadget properly, right? Maybe we could add a sentence or two at the beginning of this paragraph to give this background. Then maybe we could have a subsection about LLDB and then another one about attaching to a process with Frida gadget?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not entirely. If the app is running in debug mode, Frida can automatically inject into it and the app doesn't need to have the gadget included. However, if you did include the gadget yourself (e.g. Objection / Sideloadly), then the frida gadget library is loaded at startup, and then you do need to connect with lldb followed by Frida.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this technique we include the gadget ourselves, so the LLDB will always be required, right? Would be nice to write a short context e.g.
I didn't test it myself but it looks like
iOS17 and newer
works for all iOS versions, no? In this case, maybe it's easier to skip theiOS16 and older
? Or at least make it clear thatiOS17 and newer
is universal?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@serek8 The new xcrun does not work on iOS 16 or iOS 15, it doesn't recognize the connected device, so we will keep it as is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.