Skip to content

Instantly share code, notes, and snippets.

@soyasoya5
soyasoya5 / gist:93e5fd53aeeed3511f7920ed53b789ef
Last active May 16, 2026 22:01
build bitwuzla + triton + llvm
@soyasoya5
soyasoya5 / check_cf_warp_endpoint.py
Created September 17, 2025 15:37 — forked from thanksshu/check_cf_warp_endpoint.py
Test cloudflare WARP endpoints
"""
Test cloudflare WARP endpoints
Select all the best WARP endpoints
Thanks to https://gitlab.com/Misaka-blog/warp-script#warp-endpoint-ip-优选脚本
"""
import asyncio
import csv
import ipaddress
import logging
@soyasoya5
soyasoya5 / init.vim
Created March 2, 2024 08:07
2023 init vim
set showmatch " show matching
set ignorecase " case insensitive
set mouse= " disable mouse
set hlsearch " highlight search
set incsearch " incremental search
set tabstop=4 " number of columns occupied by a tab
set softtabstop=4 " see multiple spaces as tabstops so <BS> does the right thing
set expandtab " converts tabs to white space
set shiftwidth=4 " width for autoindents
set autoindent " indent a new line the same amount as the line just typed
@soyasoya5
soyasoya5 / init.vim
Created March 2, 2024 07:58 — forked from siraphobk/init.vim
Neovim config file 2021
" -- Native
syntax on " syntax highlighting
set nocompatible " disable compatibility to old-time vi
set showmatch " show matching
set ignorecase " case insensitive
set mouse=v " middle-click paste with
set hlsearch " highlight search
set incsearch " incremental search
set tabstop=4 " number of columns occupied by a tab
set softtabstop=4 " see multiple spaces as tabstops so <BS> does the right thing
@soyasoya5
soyasoya5 / tips.md
Last active October 9, 2022 03:53 — forked from danylokos/tips.md
Debugging 3rd party apps on iOS and Android

Debugging 3rd party apps on iOS and Android

Part I: iOS

Prerequisites

  • checkra1n
    • A7 - A10 devices (iPhone 5s - iPhone X), iOS 12.0+
    • Dropbear SSH, port 44, root:alpine
  • USB multiplexing daemon usbmuxd (available via brew)
  • Use scp to copy file to/from device

Forward remote (iDevice) port 44 (Dropbear SSH) to local (Mac) 2222

@soyasoya5
soyasoya5 / idapython_ctree.md
Created January 7, 2021 23:03 — forked from icecr4ck/idapython_ctree.md
Notes on CTREE usage with IDAPython

IDAPython CTREE

Important links

Description

The CTREE is built from the optimized microcode (maturity at CMAT_FINAL), it represents an AST-like tree with C statements and expressions. It can be printed as C code.

@soyasoya5
soyasoya5 / nox_magisk.md
Created September 22, 2019 09:14
nox frida
  1. Extract boot.img from target(android phone) 1.1 If you only have kernel and ramdisk in boot partition, use mkbootimg to create a boot.img from those files

  2. put boot_patch.sh and util_functions.sh from common into Magisk directory matching with HOST MACHINE(pc/raspberry) architecture (x86/arm) 2.1 The scripts can be found in Magisk github under scripts/ 2.2 If running on host machine, comment out util_functions.sh line 35 and replace it with echo "$1"

  3. Run "./boot_patch.sh $path_to_boot_img" and it will automatically be patched and WILL BE SAVED AS new-boot.img 3.1 Optionally, before running script, you can set KEEPVERITY & KEEPFORCEENCRYPT env vars for patched boot.img 3.2 Optionally, delete leftover files such as kernel, ramdisk.cpio & stock_boot if u want.