How to recover all the calls made by the script to gg. Function and parameter It's a bit long but it should me allow to recreate the functions that interests me.
I prefer to create my own script: -Accelerates the search by assigning the correct memory area for each function. -Keep that functions that are useful to me. -No have a long loading time due to the hexa to char. -No password typed -Create a list of items to restore the value edit quickly.
My question is how to repair / work around the error that unluac is making:
Exception in thread "main" java.lang.IllegalStateException: The input file does not have the signature of a valid Lua file.
at unluac.parse.BHeader. <init> (BHeader.java:41)
at unluac.Main.file_to_function (Main.java:71)
at unluac.Main.main (Main.java:42)
On a byt code file like this which is extracted from the dec 1 file.
byte code
I am not an expert on lua. If there are better tools than eclipse lua it interests me. Is there a compatible gg dependency (Jar to add in eclipse ) ?
The file has two levels of protection: 1 - Char to hex + offset (basic protection) 2 - Byte code ("compilation")
The char to hexa I manage to pass it. I get the byte code.
When I want to decompile the byte code. I have this error:
Exception in thread "main" java.lang.IllegalStateException: The input file does not have the signature of a valid Lua file.
at unluac.parse.BHeader. <init> (BHeader.java:41)
at unluac.Main.file_to_function (Main.java:71)
at unluac.Main.main (Main.java:42)
I specify that the byte code recovers is functional under gg (loading and execution) but the decompilation program makes it an error.
I am a professional developer. I know very well what compilation is. And the lua script that I saw as well as those posted are not encrypting but just hide in byte code (obfuscation).
Hello,
I understand how to decompile files but I have an error:
Exception in thread "main" java.lang.IllegalStateException: The input file does not have the signature of a valid Lua file.
at unluac.parse.BHeader. <init> (BHeader.java:41)
at unluac.Main.file_to_function (Main.java:71)
at unluac.Main.main (Main.java:42)
How to fix this error.
-I tried sticking the code in a file.
- By writing directly the code in file.
-- Opens a file in append mode
file = io.open ("dec.lua", "a")
- appends a word test to the last line of the file
file: write (data)
--closed the open file
file: close ()
It must have a trick but I did not find (google and stackoverflow)
The two files I'm trying to decompile
dec1
dec2
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.