frida-python
frida-python copied to clipboard
How can I make Frida undetected for Python on Windows?
Hi, I'm trying to use Frida with Python on Windows and I'm running into issues with it being detected by anti-cheat / anti-debug systems.
I've seen some undetection techniques like those in the undetected-frida project (e.g., patching certain behaviors), but most of that is geared toward Linux or requires full source recompilation, which is a pain on Windows due to build toolchain complexity.
Is there a recommended or relatively simple way to apply undetection techniques to frida-python on Windows? For example:
- Are there any known methods for patching the
.pyddirectly? - Can I use
frida-pythonin combination with any dynamic techniques (e.g., loader obfuscation, unhooking)? - Are there any official or unofficial best practices for staying under the radar?
I’d really appreciate any guidance or recommendations for how to keep using Frida in this context.
Thanks!