Skip to content

Instantly share code, notes, and snippets.

View Forgo7ten's full-sized avatar
😃
I may be slow to respond.

Forgo7ten Forgo7ten

😃
I may be slow to respond.
View GitHub Profile
@Forgo7ten
Forgo7ten / download_ndk.py
Created November 4, 2025 14:47
download_ndk.py - 输入版本下载指定ndk
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Android NDK 历史版本下载助手(极简元数据版)
用法示例:
python ndk_downloader.py -v r28
python ndk_downloader.py -v r26 -s mac
"""
@Forgo7ten
Forgo7ten / ida_mc_notes.md
Created July 24, 2026 09:33 — forked from icecr4ck/ida_mc_notes.md
Some notes about the IDA Microcode (intermediate language).
@Forgo7ten
Forgo7ten / guide.txt
Created August 10, 2026 07:51 — forked from mineek/guide.txt
block revokes permanently on enterprise certs on iOS
This will permanently block revokes and some ppq stuff.
Use this together with the profile to block some domains "without" a DNS.
Even if you don't have the profile, after applying this your device just cannot register revokes anymore. So you'll just not be able to install the app, but you will not get permanently blacklisted.
note this may lead to side effects. I am not sure. However, it does work.
AS ALWAYS, USE AT YOUR OWN RISK.
Basically all u need to do is run these commands one by one in a terminal on a jailbroken device:
@Forgo7ten
Forgo7ten / frida-update-ios.sh
Created August 20, 2026 17:16
frida-update-ios.sh
#!/bin/bash
set -Eeuo pipefail
#
# Frida version
#
FRIDA_VER="${1:-}"
if [ -z "$FRIDA_VER" ]; then