How Browser Exploits Work DarkSword, CVE-2025-43529, and the... - #2848
Open
carlospolop wants to merge 1 commit into
Open
carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://8ksec.io/how-browser-exploits-work-darksword-ios-cve-2025-43529 Content Categories: Based on the analysis, this content was categorized under "Binary Exploitation > iOS Exploiting > JavaScriptCore JIT, PAC Oracle, and WebContent-to-GPU Sandbox Escape Chains". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
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.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview and impact
DarkSword is a one-click iOS watering-hole exploit kit disclosed on March 19, 2026 by Google Threat Intelligence Group, with parallel analysis from Lookout and iVerify. A victim only needs to tap a link to a compromised or look-alike website. The page silently loads an obfuscated JavaScript exploit chain that combines six vulnerabilities to move from attacker-controlled JavaScript in Safari to arbitrary kernel read/write within seconds. Three bugs were zero-days wh...
🔧 Technical Details
Optimizing-JIT speculation to arbitrary memory access: Target a JIT tier that optimizes hot JavaScript by assuming stable value types and removing repeated checks. Trigger a garbage-collection, object-state, or optimization transition that invalidates the assumption without activating the associated guard or deoptimization path. The resulting type confusion can make object-reference storage appear to contain doubles or make attacker-controlled doubles appear to contain references. Reading pointer bits through a double representation creates
addrof; writing chosen pointer bits as a double and reinterpreting them as a reference createsfakeobj. Combining these primitives with controlled butterflies, typed arrays, orArrayBufferbacking stores yields arbitrary read/write in the renderer. The construction must normally be retuned for each engine build because object layouts, structure IDs, and offsets change.Legitima...
🤖 Agent Actions
Updated:
src/binary-exploitation/ios-exploiting/webkit-dfg-store-barrier-uaf-angle-oob.mdAdded concise technical coverage of:
Validation passed: balanced Markdown fences, valid reference numbering, forbidden-source check, and
git diff --check. Full mdBook build was unavailable becausemdbookis not installed.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.