Installing Frida on Mac M-Series Chips: A Comprehensive Guide
1. Cleaning Up Previous Installation Traces
If you've attempted to install Frida before and encountered issues, residual cache files and symbolic links might interfere with new installaitons. These remnants must be removed first. (Standard pip installations typically deploy x86_64 versions, which create corresponding symbolic links that won't w ...
Posted on Mon, 15 Jun 2026 17:39:46 +0000 by Joe_Dean
Reverse Engineering a Product Recommendation API in the Dewu Mobile Application
Today's Objective
Collect product recommendation data from the Dewu app home screen
Target application version: 4.74.5
Bypassing Forced Updates
# -*- coding: utf-8 -*-
'''
@IDE : PyCharm
@version : 3.9
@Auth : Security Researcher
@time : 2024/2/25 8:01
@Description: Bypass update dialog in Dewu app
'''
import frida
import sys
rdev = frida.g ...
Posted on Fri, 08 May 2026 11:17:44 +0000 by axo