python 开发效率高,但就是太容易反编译
使用 uncopyle 反编译几乎得到和原代码相同的东西
git clone https://github.com/gstarnberger/uncompyle.git
cd uncompyle/
sudo ./setup.py install
uncompyler.py thank_goodness_this_still_exists.pyc > recovered_file.py
代码混淆是个不错的 idea,但是其工具pyobfuscate,
很早就停止维护了
把代码全部都转化为base64,再转化的方法不可取,代码难看不说,直接用b64decode,也就转化过来了
>>> import base64
>>> mycode = "print ‘Hello World!‘"
>>> secret = base64.b64encode(mycode)
>>> secret
‘cHJpbnQgJ2hlbGxvIFdvcmxkICEn‘
>>> mydecode = base64.b64decode(secret)
>>> eval(compile(mydecode,‘<string>‘,‘exec‘))
Hello World!
难道说唯一的方法是python和c++混合编成?
ref:
http://stackoverflow.com/questions/8189352/decompile-python-2-7-pyc
时间: 2024-10-10 08:56:00