- Discord: Visual Studio#0001
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"0x000087B630825208": "751C01", | |
"0x00012C86A7D8F436": "73161F", | |
"0x0001F7C0ECBFC886": "3C6819", | |
"0x0003078079DAEFA1": "626173653A3A676C6F62616C3A3A43526E74566563746F723C7374643A3A756E697175655F7074723C435375626172656153657475703E3E", | |
"0x0003704A721FFE99": "64120B", | |
"0x0003CB1450844E41": "5A6F6E65", | |
"0x0003E85F0E22645F": "234D4C4F475F4445464541545F424F53535F4357585F464F52455354", | |
"0x0003FB5DE54319F5": "102E0832", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |