Skip to content

Instantly share code, notes, and snippets.

View GoobyCorp's full-sized avatar

John Dong GoobyCorp

  • Gooby Corp.
View GitHub Profile
@GoobyCorp
GoobyCorp / tx_decompress.py
Last active August 5, 2020 03:58 — forked from hexkyz/tx_decompress.py
A tool to decompress SX OS kip files version <= 3.0.4 (Python 3 Compatible)
#!/usr/bin/env python3
# The following is adapted from https://github.com/reswitched/loaders/blob/master/nxo64.py
#
# ===========================================================================================
#
# Copyright 2017 Reswitched Team
#
# Permission to use, copy, modify, and/or distribute this software for any purpose with or
# without fee is hereby granted, provided that the above copyright notice and this permission
@GoobyCorp
GoobyCorp / tx_unpack.py
Last active August 5, 2020 05:33 — forked from hexkyz/tx_unpack.py
A tool to unpack SX OS version <= 3.0.4 (Python 3 Compatible)
#!/usr/bin/env python3
###############################################
# TX SX OS unpacker - by hexkyz and naehrwert #
###############################################
# Updated by Visual Studio #
###############################################
# Added asset extraction
# Condensed the code
# Updated for Python 3
@GoobyCorp
GoobyCorp / tx_unpack.py
Last active June 23, 2018 00:04
A script to unpack Team Xecuter's SX OS. THIS IS NOT A CRACK!
#!/usr/bin/python3
#built-in's
from ctypes import *
from os import mkdir
from io import BytesIO
from os.path import isdir, isfile, join
from binascii import hexlify as _hexlify, unhexlify
#packages