Skip to content

Instantly share code, notes, and snippets.

@hiphopsmurf
hiphopsmurf / pageant-startup-script.bat
Created January 22, 2020 17:41
Pageant Batch File for loading keys on startup
@ECHO off
REM Program : Pageant Key Loader
REM Author : Lee Robert
REM Description : Automatically loads specified private keys into
REM pageant on execution
REM =============================================================
REM
REM Add a private key
IF EXIST "C:\path\to\your\key.ppk" (SET KEYS=%KEYS% "C:\path\to\your\key.ppk")
IF EXIST "C:\path\to\your\key2.ppk" (SET KEYS=%KEYS% "C:\path\to\your\key2.ppk")
@hiphopsmurf
hiphopsmurf / alpine-user.Dockerfile
Created June 23, 2023 16:21 — forked from utkuozdemir/alpine-user.Dockerfile
A gist to add a user to the Alpine docker image
FROM alpine:3
ENV USER_ID=65535
ENV GROUP_ID=65535
ENV USER_NAME=rsync-user
ENV GROUP_NAME=rsync-user
RUN addgroup -g $GROUP_ID $GROUP_NAME && \
adduser --shell /sbin/nologin --disabled-password \
--no-create-home --uid $USER_ID --ingroup $GROUP_NAME $USER_NAME
@hiphopsmurf
hiphopsmurf / openvpncloudlared.txt
Created February 11, 2025 01:03 — forked from rameshkrishna/openvpncloudlared.txt
OpenVPN with Cloudflared Tunnels - No Port Fowarding - No Static IP - NO DDNS
Task:
Access OpenVPN or any Service on Home Network from Public Networks (Hotel) without configuring router and without static IP
Step 1:
Install OpenVPN on any device connected to Home Network (Raspberry mychoice with pivpn)
- Change default OpenVPN protocol from UDP to TCP (Cloudflare doesn't support UDP)
- Make a note of TCP port number (default is 443)
- Grab the OpenVPN client config file
Step 2:
Install Cloudflared on Raspberry PI
- Create a tunnel
#set
adb shell settings put global http_proxy 10.10.11.195:8888
#unset
adb shell settings put global http_proxy :0
requires to restart the app to take effect
@hiphopsmurf
hiphopsmurf / i2cpp_ghidra.md
Created March 2, 2026 14:10 — forked from BadMagic100/i2cpp_ghidra.md
Instructions to get a useful decompilation out of an il2cpp game. Or, "I spent hours to trial and error so hopefully you won't have to"

Decompiling IL2CPP Games with Il2CppDumper and Ghidra

This guide will walk through how to decompile/reverse engineer IL2CPP games for modding usage.

Note: expect this entire process to take upwards of an hour. Have something ready to do on the side while waiting for processing to finish.

Prerequisites

  1. Download Il2CppDumper