Bypass PT_DENY_ATTACH entirely - #750
Draft
khanhduytran0 wants to merge 479 commits into
Draft
Conversation
…attery section not loading and potentially camera not working
Fix some strings get cut off Perform minor changes Should be perfect now
* Create Localizable.strings Spanish * Update Localizable.strings Spanish * Update sort_localizations.sh * Update project.pbxproj
Update Localizable.strings
…ixes Frida attaching on process launch)
- Fixed some grammar mistake (making it more understandable for Filipino users). - Some grammar still needs further inspection but over-all it's understandable. - Long stanza might create overlapping?
…pa334#714) * feat: add auth required string feat: add auth required string chore: make this more inline with what password you're changing * feat: change mobile password auth * chore: allow biometrics * Revert "chore: allow biometrics" This reverts commit f44218c.
* Update Localizable.strings Spanish * Update Localizable.strings Spanish * Update Localizable.strings Spanish
… with -O2 and readd -O2
yahisrael88-cpu
approved these changes
Nov 7, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR allows debugserver to attach to processes blocking debugger using
ptrace(PT_DENY_ATTACH). It does 2 things:PT_DENY_ATTACH, it temporarily clearsP_LNOATTACHfromp_lflagbefore callingptraceand restores it afterwardsP_LTRACEDflag is cleared fromp_lflagso that any calls toptrace(PT_DENY_ATTACH)take no effect. This might cause issues, so idk whether to keep it or make it a toggle.