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
# 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" |
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
#!/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 |
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
""" | |
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 |
OlderNewer