Skip to content

Instantly share code, notes, and snippets.

@DanaEpp
DanaEpp / guid_reaper.py
Created October 20, 2022 17:56
Tool to dump v1 GUIDs and generate a wordlist of GUIDs for use in bruteforce attacks against APIs with predictable GUIDs
#!/bin/env python3
import argparse
import datetime
import re
import sys
import uuid
###############################################################################
# Based off of Daniel Thatcher's guid tool
@incogbyte
incogbyte / mixunpin.js
Last active April 21, 2025 03:21
Frida script to bypass common methods of sslpining Android
console.log("[*] SSL Pinning Bypasses");
console.log(`[*] Your frida version: ${Frida.version}`);
console.log(`[*] Your script runtime: ${Script.runtime}`);
/**
* by incogbyte
* Common functions
* thx apkunpacker, NVISOsecurity, TheDauntless
* Remember that sslpinning can be custom, and sometimes u need to reversing using ghidra,IDA or something like that.
* !!! THIS SCRIPT IS NOT A SILVER BULLET !!
@cokia
cokia / korea_transportation_card_read_info_apdu
Last active April 25, 2025 11:38
한국 교통카드 잔액조회/정보조회/기록조회 APDU 모음
BALANCE_RAILPLUS = new byte[] { -112, 76, 0, 0, 4 };
BALANCE_CASHBEE = new byte[] { -112, 76, 0, 0, 4 };
BALANCE_HIPASS = new byte[] { -112, 92, 0, 0, 4 };
BALANCE_MASTER = new byte[] { -112, 76, 0, 0, 4 };
BALANCE_TMONEY = new byte[] { -112, 76, 0, 0, 4 };
BALANCE_HANPAY = new byte[] { -112, 76, 0, 0, 4 };
CARDINFO_CASHBEE = new byte[] { 0, -78, 1, 20, 51 };
CARDINFO_HIPASS = new byte[] { 0, -80, -120, 0, 12 };
CARDINFO_MASTER = new byte[] { 0, -78, 1, 12, 0 };
CARDINFO_TMONEY = new byte[] { 0, -78, 1, 20, 51 };
@heaths
heaths / msistate.go
Created April 19, 2023 00:29
Get the Windows Installer product assignment for products related by UpgradeCode
//go:build windows
package main
import (
"flag"
"fmt"
"log"
"os"
"path/filepath"