Skip to content

Instantly share code, notes, and snippets.

View zhaoboy9692's full-sized avatar

小白技术社 zhaoboy9692

View GitHub Profile
@NoReNoLife
NoReNoLife / FuckTLSdump.py
Created September 18, 2024 23:30
KeyGen for tlsdump | tlsdump注册机 破解
#!/usr/bin/env python3
import base64
import subprocess
from json import dumps
from hashlib import md5
from Crypto.Cipher import AES
from Crypto.Util.Padding import pad
def get_id_and_sn():
@miticollo
miticollo / How-to-build-frida-server-for-ios.md
Last active October 17, 2024 03:27
How to build frida server for iOS jailbroken devices

Here, I'll show you how to compile Frida for both rootfull and rootless jailbreaks.

TL;DR

On Dopamine/Fugu15 Max or palera1n you can add my repo (open the link in your favorite browser on your jailbroken iDevice).

The DEBs you will install are build using the following instructions.

Update 2024-02-29

@h1code2
h1code2 / readme.md
Last active January 23, 2024 06:32
FRIDA抓包相关笔记/常用操作 #frida #抓包 #hook #okhttp #proxy #pinning # ssl

FRIDA抓包相关笔记/常用操作

原文链接:https://api-caller.com/2019/11/05/capture-note/

抓包应该是被问到最多的事情了, 记录一些片段.

珍惜Any 之前提过 一种思路 是遍历所有类, 按照特征去判断校验类和方法.

此处的思路则是, 先跑一遍并让它失败, 找到特征打印堆栈, 即可锁定位置, 再行 hook 即可.