捕鱼达人4 LUA文件解密
2017-05-31 本文已影响0人
vul404
def decode(buf):
i=struct.unpack('i',buf[0:4])[0]
if len(buf)>9 and i==0x6B7074:
buf=buf[8:]
i=ord(buf[0])^0x66
buf=chr(i)+buf[1:]
return zlib.decompress(buf)
return buf
def decode(buf):
i=struct.unpack('i',buf[0:4])[0]
if len(buf)>9 and i==0x6B7074:
buf=buf[8:]
i=ord(buf[0])^0x66
buf=chr(i)+buf[1:]
return zlib.decompress(buf)
return buf