lua code deobfuscation

后端 未结 6 1017
甜味超标
甜味超标 2021-01-07 08:54

I\'ve recently downloaded some lua code and what I found inside was some obfuscated string. That made me wonder what sort of obfuscation technique was used there. Does anybo

6条回答
  •  被撕碎了的回忆
    2021-01-07 09:33

    Doesn't look encrypted at all. Seems like it's just a sequence of bytes. Each backslash represents a character with its byte code.

    27 is escape, 76 is 'L', 117 is 'u', 97 is 'a' and so on.

    Running it through a short script gives me this string (symbols are special characters, such as escape, start of heading and null): ←LuaQ ☺♦♦ @ @C:\Users\Alex\Desktop

    You can look up the bytes on an ascii table.

    Update: A bit of research told me that LuaQ means that it's a precompiled script or something of the sort. I could be way off though.

提交回复
热议问题