Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

decoding and decrypting a python script that you dont know the encryption type

I have a python script that is encoded. I think behind the encoding its encrypted, but I don't know the encrypting type. The script runs in this format:

import marshal,base64,zlib
exec(marshal.loads(zlib.decompress(base64.b16decode("789C5D9B3BAEE53972E6B34AADD6630...")

I want the encrypted part in the base64.b16decode() method to be decrypted because I want to see the python source and edit it for myself and add some features.

I tried to decode with base64.b16decode() and got this output:

b'xx9c]x9b;xaexe59rxe6xb3Jxadxd6cx...'

I want the main python source and get this output.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...