Skip to content

Instantly share code, notes, and snippets.

View jdmallen's full-sized avatar

J.D. Mallen jdmallen

View GitHub Profile
@acuifex
acuifex / dump.py
Last active February 11, 2025 16:51
steam shared secret dump script
# https://novanoir.moe/blog/2022/11/20/%E3%80%90ROOT%20Android%E3%80%91Steam%203.0%20%E5%AF%BC%E5%87%BA%E4%BB%A4%E7%89%8C%E7%9A%84%E6%95%B0%E7%A7%8D%E6%96%B9%E6%B3%95/
import json
import frida
import sys
package = "com.valvesoftware.android.steam.community"
cmd = """
'use strict;'
if (Java.available) {
hass:account
hass:alert
hass:alert-circle
hass:altimeter
hass:apple-safari
hass:apps
hass:arrow-bottom-left
hass:arrow-down
hass:arrow-left
hass:arrow-right
@seanc
seanc / docker-compose.yml
Last active October 10, 2022 10:58
simple plexmediaserver on docker: nginx, letsencrypt, plex, portainer, transmission, transmission-proxy, jackett, sonarr, radarr, and ombi
version: '2'
services:
nginx-proxy:
container_name: nginx-proxy
image: jwilder/nginx-proxy
ports:
- "0.0.0.0:80:80"
- "0.0.0.0:443:443"
volumes:
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active November 19, 2025 14:28
Online Resources For Web Developers (No Downloading)
@bishboria
bishboria / springer-free-maths-books.md
Last active December 14, 2025 11:48
Springer made a bunch of books available for free, these were the direct links
@jhoerr
jhoerr / gist:6d3ba86e6f44a30457df
Last active July 24, 2021 12:12
Getting claims from an IPrincipal
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Security.Principal;
namespace Common
{
public static class PrincipalExtensions
{
public static IEnumerable<string> Roles(this IPrincipal user)