Skip to content

Instantly share code, notes, and snippets.

View GoobyCorp's full-sized avatar

John Dong GoobyCorp

  • Gooby Corp.
View GitHub Profile
# 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
# notice appear in all copies.
#
###############################################
# TX SX OS unpacker - by hexkyz and naehrwert #
###############################################
from Crypto.Cipher import AES
from Crypto.Util import Counter
import os
import struct
"""
@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