Open
Description
Describe the bug
You can easily dump strings in scripts that had EncryptStrings applied by finding " .. " and inserting print() in each result
Expected behavior
It should be harder to find the string decryption.
To Reproduce
Steps to reproduce the behavior:
- Obfuscate with strong preset and use LuaU as the luaVersion:
- AntiTamper's UseDebug must be set to false
local constant = "Hello world!"
print(constant)
print("Hello world 2!")
- Beautify obfuscated code
- Find " .. " with Ctrl+F (include the spaces)
- Add print() to each result
L_87_ = L_69_ .. L_82_
print(L_87_);
- Reminify and run the code
Screenshots
Additional context
https://paste.ee/p/62huP - Obfuscated code with strong preset
https://paste.ee/p/8yfqO - Beautified code with print() inserted
https://paste.ee/p/NMisF - Reminified code