Skip to content

Instantly share code, notes, and snippets.

View Slluxx's full-sized avatar
🧐
Searching for a new challenge!

Slluxx Slluxx

🧐
Searching for a new challenge!
View GitHub Profile
@Slluxx
Slluxx / RealZooQOL.user.js
Last active February 12, 2024 04:22
RealZoo Quality of Life addon
// ==UserScript==
// @name RealZoo QOL
// @namespace https://realzoo.itsyipy.com/
// @version 1.3.2
// @build-date 2023-1-27 23:32:12
// @description Some quality of life hacks.
// @author Slluxx
// @match https://realzoo.itsyipy.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=itsyipy.com
@Slluxx
Slluxx / edit1.py
Last active November 9, 2022 05:01
blogpost pretty python
import os, json
async def generate(ctx, service_name):
if str(ctx.channel.id) != json.loads(open("config.json", "r").read())["gen_channel"]:
await ctx.respond(f"You can only gen in: <#{json.loads(open('config.json', 'r').read())['gen_channel']}>", ephemeral=True)
return
week_services = ["None"]
for service in week_services:
@Slluxx
Slluxx / patchNXapps.md
Last active April 30, 2024 01:11
How to patch Nintendo Switch Applications in IDA

Patching the Youtube App

In short

  1. Extract the main NSO
  2. Convert it into an ELF (to strip header/hashes)
  3. Load it into Ida, find the function and patch the bytes back into the binary
  4. Convert the ELF back into NSO
  5. Use the nso as exefs patch or re-import it into the NCA/NSP