问题标签 [luadec]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
lua - Correctly translate backslashed numbers to symbols?
I just decompiled a file with luadec, it does it well, and, the output not being perfect, it's still usable, but I'm getting a weird string of numbers \198\247\184\181\188\177\177\219\183\161\189\186
that I know for a fact are in Korean language, but I do not know what they're called and basically can't find anything about them.
I just need to correctly translate the string from numbers to symbols or gibberish text, like this c±Ý»ö´À³¦Ç¥
.
If someone could point me in the right direction I would be grateful, thanks.
lua - 如何从 cocos2d-x 框架中解密和反编译 luac 文件?
我知道 lua 版本存储在 luac 文件的第 5 个字节(标题)中。luac
这是我拥有的文件的前几个字节:
6D 6D 64 64 74 32
第 5 个字节是74
. 我的 Luac文件是 LuaJIT 字节码吗?
我正在尝试使用unluac反编译此文件并收到此错误
以下是使用luadec (lua 5.1)的错误
如何反编译这种文件类型?
lua - 我有 Luadec 的问题,错误:预编译块中的错误标头
我在反编译 .lua 文件时遇到问题。我正在使用 luadec 但是当我尝试它时说:
或者
我读到可能是系统架构的问题,所以我尝试使用 32 位和 64 位 Windows,但仍然遇到同样的问题。
我该如何解决?
lua - 在编译的 lua 脚本中更改 lua 编号的大小
我的目标是反编译、修改和重新编译一个 lua 脚本。我可以很容易地做到这一点,期望生成的二进制文件的标题与原始文件不同。我反编译的二进制块以以下标头开头:
1b4c 7561 5100 0104 0804 0400
生成的文件中的标题是:
1b4c 7561 5100 0104 0804 0800
如您所见,它们之间唯一变化的是Size of lua_Number
( source,请参见第 7 页)
我已经尝试更改目标平台甚至版本,但最终无法获得正确的标题。有没有办法以某种方式将此设置为选项?