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 / output.json
Last active March 31, 2025 20:00
Metroid Dread String Hashes
This file has been truncated, but you can view the full file.
{
"0x000087B630825208": "751C01",
"0x00012C86A7D8F436": "73161F",
"0x0001F7C0ECBFC886": "3C6819",
"0x0003078079DAEFA1": "626173653A3A676C6F62616C3A3A43526E74566563746F723C7374643A3A756E697175655F7074723C435375626172656153657475703E3E",
"0x0003704A721FFE99": "64120B",
"0x0003CB1450844E41": "5A6F6E65",
"0x0003E85F0E22645F": "234D4C4F475F4445464541545F424F53535F4357585F464F52455354",
"0x0003FB5DE54319F5": "102E0832",
int __cdecl LocalClientStorageProvider__GenerateAndSaveIndexFile(int instance, char *path)
{
int AES_0; // esi
int AES_1; // esi
int ms; // esi
int bw; // edi
int v6; // ebp
int v7; // eax
int v8; // ebp
unsigned int AES_2; // eax
@GoobyCorp
GoobyCorp / tx_update.py
Last active April 7, 2019 07:00
A script to make updating SX OS (even) easier
#!/usr/bin/python3
################################################
# SX OS updater by Visual Studio @ Gooby Corp. #
################################################
import re
from sys import stdout
from zipfile import ZipFile
from os.path import isfile, isdir
@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