Jump to content

asc

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

asc's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare

Recent Badges

1

Reputation

  1. 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.
  2. 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.
  3. I know only two methods to extract the bytecode: Print (*****) Write (*****) The original script works.
  4. 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 ) ?
  5. 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).
  6. 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
×
×
  • Create New...

Important Information

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.