llvm-obfuscation
Expertise in LLVM-based code obfuscation techniques including OLLVM, control flow flattening, string encryption, virtualization, and anti-analysis methods. Use this skill when working on code protection, anti-reverse engineering, or implementing custom obfuscation passes.
Works with
---
name: llvm-obfuscation
description: Expertise in LLVM-based code obfuscation techniques including OLLVM, control flow flattening, string encryption, virtualization, and anti-analysis methods. Use this skill when working on code protection, anti-reverse engineering, or implementing custom obfuscation passes.
license: MIT
---
# LLVM Code Obfuscation Skill
This skill provides comprehensive knowledge of LLVM-based code obfuscation frameworks and techniques for software protection and anti-reverse engineering.
## Core Obfuscation Techniques
### Control Flow Obfuscation
- **Control Flow Flattening (CFF)**: Transform structured control flow into a single dispatcher loop with state machine
- **Bogus Control Flow (BCF)**: Insert opaque predicates and dead code paths
- **CFG Randomization**: Randomize basic block ordering and add fake edges
### Data Obfuscation
- **String Encryption**: Encrypt string literals at compile-time, decrypt at runtime
- **Constant Substitution**: Replace constants with complex expressions
- **Variable Splitting**: Split variables into multiple components
### Code Transformation
- **Instruction Substitution**: Replace standard instructions with equivalent complex sequences
- **MBA (Mixed Boolean-Arithmetic)**: Use mixed boolean-arithmetic expressions for obfuscation
- **Virtualization (VMP)**: Convert code into custom bytecode executed by embedded VM
## Major OLLVM Frameworks
### Classic OLLVM
- **Original OLLVM**: https://github.com/obfuscator-llvm/obfuscator
- Features: BCF, CFF, Instruction Substitution, String Encryption
### Modern Variants
- **Hikari**: Advanced features including function wrapper, anti-class-dump
- **Pluto-Obfuscator**: Well-maintained with MBA, indirect branch, global encryption
- **Arkari**: Modern implementation with enhanced features
- **o-mvll**: Mobile-focused obfuscator for iOS/Android
### Specialized Tools
- **IR VMP**: GANGE666/xVMP, NiTianErXing666/SmallVmp for virtualization
- **Warbird**: Microsoft's commercial obfuscation technology
## Implementation Guidelines
### Creating Custom LLVM Obfuscation Pass
```cpp
#include "llvm/Pass.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/Instructions.h"
class MyObfuscationPass : public llvm::FunctionPass {
public:
static char ID;
MyObfuscationPass() : FunctionPass(ID) {}
bool runOnFunction(llvm::Function &F) override {
// Implement obfuscation logic
for (auto &BB : F) {
for (auto &I : BB) {
// Transform instructions
}
}
return true;
}
};
```
### Best Practices
1. **Preserve Semantics**: Ensure transformations don't break program correctness
2. **Randomization**: Use seeded random number generators for reproducible builds
3. **Layered Approach**: Combine multiple obfuscation techniques
4. **Performance Balance**: Consider runtime overhead vs protection level
5. **Testing**: Extensive testing across different inputs and platforms
## Toolchain Integration
### NDK Integration
- OLLVM with Android NDK (r17-r23+)
- Examples: android-ndk-aarch64-host-LLVM6.0-Ollvm-Armariris
### Compiler Toolchains
- ollvm-mingw: Windows cross-compilation
- ollvm-rust: Rust toolchain integration
- Swift integration: swift-Ollvm11
## Anti-Deobfuscation Considerations
When implementing obfuscation:
- Consider resistance to symbolic execution (SymCC, KLEE)
- Add protection against pattern matching deobfuscators
- Implement anti-debugging checks
- Use dynamic dispatch to hinder static analysis
## Resources
Refer to the main README.md for a comprehensive list of OLLVM implementations and related tools.
## Getting Detailed Information
When you need detailed and up-to-date resource links, tool lists, or project references, fetch the latest data from:
```
https://raw.githubusercontent.com/gmh5225/awesome-llvm-security/refs/heads/main/README.md
```
This README contains comprehensive curated lists of:
- 80+ OLLVM implementations and forks (OLLVM section)
- MSVC Warbird obfuscation tools (MSVC Warbird section)
- IR-based VMP and virtualization projects
- NDK integration examples for different versionsMore Security skills
azure-cost
microsoft/azure-skills
Azure cost management: query costs, forecast spending, optimize to reduce waste. WHEN: \"Azure costs\", \"Azure bill\", \"cost breakdown\", \"how much am I spending\", \"forecast spending\", \"optimize costs\", \"reduce spending\", \"orphaned resources\", \"rightsize VMs\", \"cost spike\", \"reduce storage costs\", \"AKS cost\". DO NOT USE FOR: deploying resources, provisioning, diagnostics, or security audits.
entra-app-registration
microsoft/azure-skills
Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Key Vault secrets (use azure-keyvault-expiration-audit), general Azure resource security guidance.
azure-messaging
microsoft/azure-skills
Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, message lock expired, lock renewal, lock renewal batch, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter, batch processing lock, session lock expired, idle timeout, connection inactive, link detach, slow reconnect, session error, duplicate events, offset reset, receive batch.

