Skip to content

Instantly share code, notes, and snippets.

View tuxuser's full-sized avatar
🎯
Focusing

tuxuser tuxuser

🎯
Focusing
View GitHub Profile
@tuxuser
tuxuser / sunshine-0.14.0.ebuild
Created July 24, 2022 17:52
Sunshine gamestreaming host - Gentoo ebuild
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils git-r3
DESCRIPTION="Sunshine is a gamestream host for Moonlight"
HOMEPAGE="https://github.com/SunshineStream/Sunshine"
EGIT_REPO_URI="https://github.com/SunshineStream/Sunshine.git"
@tuxuser
tuxuser / fiddler_gen.sh
Last active February 24, 2024 17:29
Fiddler - MITMProxy Key / Root CA generation
#!/bin/sh
## Some device only accept a Fiddler certificate.
## What if you don't like Fiddler and want to use mitmproxy instead?
## -> Generate your own Fiddler key/root ca!
# Usage:
# - Start mitmproxy / mitmweb once, to populate the `.mitmproxy` dir
# - Execute this script
# - Copy the mitmproxy certs into `C:\Users\<username>\.mitmproxy` aka. `/home/<username/.mitmproxy`, overwriting existing files
# - Start mitmproxy / mitmweb
@tuxuser
tuxuser / ksp_savegames_extract.py
Created December 21, 2024 11:07
Kerbal Space Program (KSP) Xbox / Playstation Savegame blob extractor / decompressor
"""
Extracts individual files from Kerbal Space Program (KSP) Xbox / Playstation Savegame blobs
Dependency:
- dissect.cstruct (`pip install dissect.cstruct`)
"""
import io
import os
import argparse