Prometheus
Prometheus copied to clipboard
Lua Obfuscator written in pure Lua
The parser involved with the Vmify step does not parse the same way as original lua does, leading to cases where incorrect code can be compiled Take the following code:...
Fixes the aggressive anti-tamper mode, which has presumably been broken since 141de77 / #168 `debug.getlocal` expects a level, not a function (see [lua 5.1 docs](https://www.lua.org/manual/5.1/manual.html#pdf-debug.getlocal)), so this call is invalid...
can somebody add support for this? ```lua self.a[b] = "" ``` ```lua -- or just a[b] = "" ``` thanks
I’ve integrated the prometheus src folder to work with my vercel-hosted website using github workflows this took me really long haha but the issue is that the code it outputs...
Would be cool if it included new [Luau RFCs](https://rfcs.luau.org/) like [if-then-else](https://rfcs.luau.org/syntax-if-expression.html) Due to limitations with Lua, it will be built with Lune, and then i might make a pull request...
a scenario where you just send the obfuscated lua code to the device, but an error occurs and you have a rollback file to understand the line and column in...
Hi, running this for newer lua (not newest) 5.4. While I can simply solve problems when 5.1 to 5.4 functions were renamed, I just can't get rid of errors which...
I have found a vulnerability in the Antitamper. By simply replacing `pcall` and making it return a metatable, you can take advantage of the way the antitamper validates error messages....
This PR fixes a critical bug in the VMify compiler where repeat-until statements with local variables would fail with an "Unresolved Upvalue" error. ## Problem The issue occurred when a...