wwtmugen Posted Wednesday at 07:39 PM Posted Wednesday at 07:39 PM https://www.mediafire.com/folder/wwrdn0l5m0mmk/kof97ol 游戏官网https://kof.ledosoft.com 加密? 如何提取 sprite.pfs effect.pfs 这些 DDS 文件 dashe2_res054.dds hrun_res008.dds hstand_res008.dds
Moderators ikskoks Posted Wednesday at 08:27 PM Moderators Posted Wednesday at 08:27 PM Did you try with ImageHeat?
wwtmugen Posted Wednesday at 10:23 PM Author Posted Wednesday at 10:23 PM 1 hour ago, ikskoks said: 您是否尝试过使用 ImageHeat? i tried it
Moderators Solution ikskoks Posted Thursday at 11:14 AM Moderators Solution Posted Thursday at 11:14 AM Encrypted with XOR. Key is 0xFF. ReverseBox based solution below: from reversebox.encryption.encryption_xor_basic import xor_cipher_basic def main(): file_1 = open("hrun_res008.dds", "rb") encrypted_data = file_1.read() file_1.close() decrypted_data: bytes = xor_cipher_basic(encrypted_data, b'\xFF') file_2 = open("hrun_res008_decrypted.pvr", "wb") file_2.write(decrypted_data) file_2.close() print("File decrypted successfully!") if __name__ == '__main__': main()
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now