2022-05-16 23:48:22 +00:00
|
|
|
#####################################
|
|
|
|
## Created by briandeheus ##
|
|
|
|
## https://github.com/briandeheus ##
|
|
|
|
## Implementation and changes ##
|
|
|
|
## LoafyLemon ##
|
|
|
|
#####################################
|
2024-03-26 23:30:17 +00:00
|
|
|
init python in image_payload:
|
2022-05-16 23:48:22 +00:00
|
|
|
import binascii
|
|
|
|
import struct
|
2023-02-10 23:12:16 +00:00
|
|
|
import zlib
|
2024-03-30 19:20:46 +00:00
|
|
|
import os
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
CHUNK_TYPE_END = "IEND"
|
|
|
|
CHUNK_TYPE_PUNK = "wtSi"
|
|
|
|
MAX_BYTES = 2147483647
|
|
|
|
SIGNATURE_BYTES = 8
|
|
|
|
BYTES_IN_KB = 2014
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def bytes_to_hex(b):
|
|
|
|
return b.hex()
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def bytes_to_utf(b):
|
|
|
|
return b.decode()
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def bytes_to_int(b):
|
|
|
|
return int(bytes_to_hex(b), 16)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def read_bytes(f, byte_count: int):
|
|
|
|
return f.read(byte_count)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def rewind_bytes(f, byte_count):
|
|
|
|
f.seek(f.tell() - byte_count)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def get_file_length(f):
|
|
|
|
f.seek(0, os.SEEK_END)
|
|
|
|
file_length = f.tell()
|
|
|
|
f.seek(0)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
return file_length
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def read_chunk(f):
|
|
|
|
chunk_size = read_bytes(f, 4)
|
|
|
|
chunk_type = read_bytes(f, 4)
|
|
|
|
chunk_content = read_bytes(f, bytes_to_int(chunk_size))
|
|
|
|
chunk_crc = read_bytes(f, 4)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
return [chunk_size, chunk_type, chunk_content, chunk_crc]
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def inject_punk_chunk(f, content):
|
|
|
|
chunk_size = len(content)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
if chunk_size > MAX_BYTES:
|
|
|
|
raise ValueError(f"Cannot inject more than {MAX_BYTES} bytes")
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
print(f"Injecting {CHUNK_TYPE_PUNK} chunk {chunk_size / BYTES_IN_KB} kb")
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
# Create a byte array to store our chunk data in.
|
|
|
|
tmp_bytes = bytearray()
|
|
|
|
# First write the chunk type
|
|
|
|
tmp_bytes.extend(CHUNK_TYPE_PUNK.encode())
|
|
|
|
# Now write the bytes of whatever we're trying to hide
|
|
|
|
tmp_bytes.extend(content)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
# Write the chunk size
|
|
|
|
f.write(bytearray(struct.pack("!i", chunk_size)))
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
# And the content
|
|
|
|
f.write(tmp_bytes)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
crc = binascii.crc32(tmp_bytes)
|
|
|
|
crc_bytes = crc.to_bytes(4, "big")
|
|
|
|
print("Chunk CRC", bytes_to_hex(crc_bytes))
|
|
|
|
f.write(crc_bytes)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
print("Chunk injected!")
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def list(input):
|
2024-03-30 19:20:46 +00:00
|
|
|
path = os.path.join(renpy.config.gamedir, "outfits", input)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
with open(path, "rb") as input_file:
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
input_file_length = get_file_length(input_file)
|
|
|
|
input_file.read(SIGNATURE_BYTES)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
while True:
|
|
|
|
chunk_size, chunk_type, chunk_content, chunk_crc = read_chunk(input_file)
|
|
|
|
chunk_type_str = bytes_to_utf(chunk_type)
|
|
|
|
print(f"Chunk {chunk_type_str}, {bytes_to_int(chunk_size)} bytes")
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
if input_file.tell() >= input_file_length:
|
|
|
|
return
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def inject(input, output, content):
|
2024-03-30 19:20:46 +00:00
|
|
|
input_path = os.path.join(renpy.config.gamedir, "outfits", input)
|
|
|
|
output_path = os.path.join(renpy.config.gamedir, "outfits", output)
|
2024-03-26 23:30:17 +00:00
|
|
|
content = zlib.compress(str(content).encode())
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
with open(input_path, "rb") as input_file, open(output_path, "wb") as output_file:
|
2023-02-10 23:12:16 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
input_file_length = get_file_length(input_file)
|
|
|
|
output_file.write(input_file.read(SIGNATURE_BYTES))
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
while True:
|
|
|
|
chunk_size, chunk_type, chunk_content, chunk_crc = read_chunk(input_file)
|
|
|
|
chunk_type_str = bytes_to_utf(chunk_type)
|
|
|
|
print(f"Chunk {chunk_type_str}, {bytes_to_int(chunk_size)} bytes")
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
if chunk_type_str == CHUNK_TYPE_END:
|
|
|
|
inject_punk_chunk(output_file, content)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
output_file.write(chunk_size)
|
|
|
|
output_file.write(chunk_type)
|
|
|
|
output_file.write(chunk_content)
|
|
|
|
output_file.write(chunk_crc)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
if input_file.tell() >= input_file_length:
|
|
|
|
return
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
def extract(input):
|
|
|
|
print("Attempting to extract punked data from", input)
|
2024-03-30 19:20:46 +00:00
|
|
|
path = os.path.join(renpy.config.gamedir, input)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
with open(path, "rb") as input_file:
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
input_file_length = get_file_length(input_file)
|
|
|
|
input_file.read(SIGNATURE_BYTES)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
while True:
|
|
|
|
chunk_size, chunk_type, chunk_content, chunk_crc = read_chunk(input_file)
|
|
|
|
chunk_type_str = bytes_to_utf(chunk_type)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
if chunk_type_str == CHUNK_TYPE_PUNK:
|
|
|
|
print("Found a punk chunk worth", bytes_to_int(chunk_size), "bytes")
|
|
|
|
return zlib.decompress(chunk_content).decode()
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2024-03-26 23:30:17 +00:00
|
|
|
if input_file.tell() >= input_file_length:
|
|
|
|
print("No punked data found")
|
|
|
|
return
|