Skip to content

Instantly share code, notes, and snippets.

View RobertoD91's full-sized avatar

Roberto RobertoD91

View GitHub Profile
@Kyle-Ye
Kyle-Ye / iPhone Mirroring.md
Last active March 16, 2026 23:38
Launch iPhone Mirroring.app on macOS 15 Beta 1
@throwaway96
throwaway96 / crashd.md
Last active July 23, 2026 19:49
crashd instructions

News

EOL (2024-07-21)

I'm not going to be maintaining this document anymore. I'm leaving it as-is since much of the FAQ section is still accurate and has yet to be incorporated into other resources.

Use CanI.RootMy.TV to find an exploit for your TV.

New exploit for webOS 3.5+: DejaVuln (2024-04-21)

@chaucerling
chaucerling / game.json
Last active July 19, 2026 14:11
playcover ipa source
[
{
"bundleID": "com.miHoYo.GenshinImpact",
"name": "Genshin Impact",
"version": "2.8.0",
"itunesLookup": "http://itunes.apple.com/lookup?bundleId=com.miHoYo.GenshinImpact",
"link": "https://ipa.playcover.workers.dev/0:/Genshin%20Impact/US/Genshin%20Impact_2.8.0.ipa"
},
{
"id": "com.miHoYo.Yuanshen",
@Sharrnah
Sharrnah / Install Docker - Pacman.sh
Last active February 24, 2026 10:07
Pacman Installation Scripts for SteamDeck (requires a set user password using `passwd` first)
#!/bin/bash
sudo steamos-readonly disable
sudo pacman-key --init
sudo pacman-key --populate archlinux
#sudo pacman-key --refresh-keys
# install docker package
echo -e "\rInstalling Docker..."
@sj-dan
sj-dan / crosflex_downloader.sh
Last active August 8, 2024 06:15
Script to fetch and download the latest version of the Chrome OS Flex image
#!/bin/bash
URLs=$(curl "https://dl.google.com/dl/edgedl/chromeos/recovery/cloudready_recovery2.json" \
-s --output - | \
grep "^.*\"url\".*$" | \
sed "s/.*\"url\": \"\(.*\)\".*$/\1/g")
printf "\nPick which channel to download your image from. Channel name is near the end of the URL.\n\n"
select URL in $URLs;
@giper45
giper45 / IKeystoreService.cpp
Created January 16, 2021 12:05
Android Keystore binder service client interface x86
#include <android/security/keystore/IKeystoreService.h>
#include <android/security/keystore/BpKeystoreService.h>
namespace android {
namespace security {
namespace keystore {
IMPLEMENT_META_INTERFACE(KeystoreService, "android.security.keystore.IKeystoreService")
@sorny
sorny / x11_forwarding_macos_docker.md
Last active July 5, 2026 08:17
X11 forwarding with macOS and Docker

X11 forwarding on macOS and docker

A quick guide on how to setup X11 forwarding on macOS when using docker containers requiring a DISPLAY. Works on both Intel and M1 macs!

This guide was tested on:

  • macOS Catalina 10.15.4
  • docker desktop 2.2.0.5 (43884) - stable release
  • XQuartz 2.7.11 (xorg-server 1.18.4)
  • Macbook Pro (Intel)
@razhangwei
razhangwei / captive.md
Last active May 12, 2026 15:47
Disable captive network support in #MacOS (useful for wifi connection in public places like Starbucks)

To disable it, set this preference

sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.captive.control Active -boolean false

Then, as @Leon mentions, use the regular web browser to login. Or if you are on a network where that somehow does not work then you can still try and open the app manually (located at /System/Library/CoreServices/Captive Network Assistant.app )

In case, you would ever want to remove this setting, you can do:

sudo defaults delete /Library/Preferences/SystemConfiguration/com.apple.captive.control Active
@windsurfer1122
windsurfer1122 / cleanup_ps3hen.md
Last active July 27, 2020 11:39
Guide for Manual PS3HEN Clean-Up with External XMB Mod for XMB File Explorer over USB
@pich4ya
pich4ya / root_bypass.js
Created August 5, 2019 20:14
Bypass Android Root Detection / Bypass RootBeer - August 2019
// $ frida -l antiroot.js -U -f com.example.app --no-pause
// CHANGELOG by Pichaya Morimoto (p.morimoto@sth.sh):
// - I added extra whitelisted items to deal with the latest versions
// of RootBeer/Cordova iRoot as of August 6, 2019
// - The original one just fucked up (kill itself) if Magisk is installed lol
// Credit & Originally written by: https://codeshare.frida.re/@dzonerzy/fridantiroot/
// If this isn't working in the future, check console logs, rootbeer src, or libtool-checker.so
Java.perform(function() {
var RootPackages = ["com.noshufou.android.su", "com.noshufou.android.su.elite", "eu.chainfire.supersu",