About This Deobfuscator
⚠️ Warning: Only run deobfuscated code in a secure sandbox environment.
Obfuscated scripts may contain malware or malicious code.
This tool specifically targets Lua code obfuscated with the wearedevs.net obfuscator, which uses:
- String encoding - Strings are stored as escape sequences like
"\110\053\106\114"
- Control flow flattening - Uses loops and table lookups to hide execution flow
- Bytecode generation - Often generates a self-rebuilding function
- Garbage code insertion - Adds unused operations to confuse analysis
How to Use:
- Paste your obfuscated Lua code in the left panel
- Click "Deobfuscate Lua Code"
- Review the deobfuscated output in the right panel
- Copy the result for further analysis
Limitations:
- Cannot handle heavily packed/mangled bytecode
- May not fully reconstruct original variable names
- Advanced obfuscations may require manual analysis