Debug Library¶
Disclaimer #1
Synapse claims that there's an ACE vulnerability but they won't provide any evidence of what was involved to actually execute shell-code. The possibility of such a thing happening, when you have more than usual sanitization checks, would rely on external means or another custom function that is apparently flawed. Until this other function is uncovered and the ACE is actually proven not by some staged video, the actual cause of the ACE is unknown, and I will not remove my debug library
Disclaimer #2
Use obfuscated scripts at your own risk, since any obfuscated script can destroy your PC at any given time, and even synapse cannot fully prevent this. Use obfuscated scripts only if they're from a TRUSTED source. I will not take responsibility for it
Constants¶
Get constants¶
Returns the constants used in function f
.
Set constants¶
Sets the constants used in function f
to the table constants
.
Get constant¶
Returns the constant at index
from the function f
's constants.
Set constant¶
Sets the constant at index
from function f
to constant
.
Protos¶
Get protos¶
Returns the protos used in function f
.
Set protos¶
Sets the protos used in function f
to the table protos
.
Get proto¶
Returns the proto at index
from the function f
's protos.
Set proto¶
Sets the proto at index
from the function f
's protos to proto
.
Instructions/code¶
Get code¶
Set code¶
Warning
Disabled unless you are in experimental mode
Stack¶
Get stack¶
Set stack¶
Upvalues¶
Get upvalues¶
Returns the upvalues in the function f
.
Set upvalues¶
Sets the upvalues in the function f
to upvalues
.
Get upvalue¶
Returns the upvalue at index
from the function f
's upvalues.
Set upvalue¶
Sets the upvalue at index
from the function f
's upvalues to value
.