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 ELF Initialization and Exit Handlers for XOR Decryption
Challenge Overview
The binary implements a flag verification mechanism using chained XOR operations. Understanding the execution order is critical: the program applies XOR transformations both before and after the main function executes, leveraging ELF initialization sections and exit handlers.
ELF Initialization Function Table
In ELF binarie ...
Posted on Thu, 04 Jun 2026 17:21:17 +0000 by jpbox
Batch Decompiling Java Class Files with JAD CLI
To recursively decompile compiled Java bytecode back into source files across an entire directory tree, the jad command-line utility supports wildcard patterns combined with directory restoration flags.
Windows Environment Example
jad -r -o -ff -s java -d C:\projects\decompiled_src -space -nonlb -t 4 C:\build\output\**\*.class
Unix/Linux Envir ...
Posted on Fri, 08 May 2026 10:41:11 +0000 by Highlander