Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/TheQmaks/phantom-frida Content Categories: Based on the analysis, this content was categorized under "Mobile Pentesting -> Android Applications Pentesting -> Android Anti Instrumentation And Ssl Pinning Bypass (add subsection: 'Bypassing Anti-Frida Detection / Stealth Frida Servers')". 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
Title/What it is
phantom-frida is a build + patch framework that generates a stealth (anti-detection) Frida server by cloning Frida from source, applying ~90 patches, and recompiling so common Frida fingerprints are removed or renamed. It focuses on bypassing real-world anti-Frida / anti-hooking / anti-tamper checks used by Android apps by eliminating recognizable identifiers (process name, library name, exported symbols, thread names, D-Bus names, ports, temp paths, and even r...
🔧 Technical Details
frida-servervia/proc//cmdline/ps, mapped agent librarylibfrida-agent.sovia/proc/self/maps, thread names via/proc/self/task//comm, D-Bus servicere.frida.servervia introspection, or symbol lookups likefrida_agent_mainviadlsym), rebuild Frida from source and apply coordinated string/symbol/thread/service renames so these simple signature checks no longer match.2) Bypass memfd-based detection by changing memfd names: Some detectors enumerate file descriptors and resolve them with
readlinkon/proc/self/fd/to find Frida’s in-memory-loaded agent (e.g.,frida-agent-64.so). Changing the memfd label (e.g., tojit-cache) breaks naïve FD-name signatures while keepi...🤖 Agent Actions
Summary:
Tests:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.