Results 1 to 13 of 13

Hybrid View

  1. #1
    ppop222's Avatar
    Join Date
    Oct 2018
    Gender
    female
    Posts
    13
    Reputation
    10
    Thanks
    0

    How do i de obfuscate a lua code

    i have a obfuscated lua code that i want to de obfuscate it , how do i do that? i did a bit and now im stuck with

    math.randomseed(9891861);
    RunString(("aab1....

  2. #2
    null_z's Avatar
    Join Date
    Oct 2018
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    2
    Replace RunString with print

  3. #3
    ppop222's Avatar
    Join Date
    Oct 2018
    Gender
    female
    Posts
    13
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by null_z View Post
    Replace RunString with print
    then what?

  4. #4
    null_z's Avatar
    Join Date
    Oct 2018
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by ppop222 View Post
    then what?
    Then just run this code.

  5. #5
    ppop222's Avatar
    Join Date
    Oct 2018
    Gender
    female
    Posts
    13
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by null_z View Post
    Then just run this code.
    in the console showed almost the same - math.randomseed(943891);RunString(("df39f9.....

  6. #6
    null_z's Avatar
    Join Date
    Oct 2018
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by ppop222 View Post
    in the console showed almost the same - math.randomseed(943891);RunString(("df39f9.....
    That means that this code was recursively obfuscated multiply times.
    First of all u need to run this code:
    Code:
    local rs = RunString RunString = function(s) if (string.sub(s, 1, 15) == "math.randomseed") then rs(s) else file.Append("deobfuscated.txt", s) end end
    Then u just run ur original obfuscated code(not the one with print).
    Deobfuscated code will be in data/deobfuscated.txt

Similar Threads

  1. [Tutorial] Tutorial on how to properly install gmod hacks with lua codeing involved.
    By TyleR_RR in forum Garry's Mod Hacks & Cheats
    Replies: 12
    Last Post: 06-05-2013, 08:55 AM
  2. (help) How do i use the hack source codes
    By khaisbeast in forum Combat Arms Coding Help & Discussion
    Replies: 4
    Last Post: 01-29-2011, 10:01 PM
  3. [SOLVED]how to used the injector and Source Code ?????
    By adu.12 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 15
    Last Post: 08-26-2010, 07:17 AM
  4. [HELP] How do you add a "Save Settings" code in my menu strip menu?
    By DayumKen in forum Visual Basic Programming
    Replies: 3
    Last Post: 07-10-2010, 02:48 PM
  5. America's Army No Recoil/Reload LUA code.
    By MagikBullet in forum General Game Hacking
    Replies: 7
    Last Post: 02-25-2007, 10:11 AM