Skip to content

Instantly share code, notes, and snippets.

@ed9w2in6
ed9w2in6 / WSA_Houdini_Extracter.bat
Created December 5, 2023 10:46 — forked from natsumerinchan/WSA_Houdini_Extracter.bat
Extract libhoudini from WSA.
@echo off
@rem Set variables
set "TMP_PATH=/data/local/tmp"
set "WSA_PORT=127.0.0.1:58526"
@rem Check whether platform-tools is exist or not
adb devices >nul
if not %errorlevel% == 0 (
cls
echo [ERROR] It seems that adb is not exist!
@ed9w2in6
ed9w2in6 / languages-and-vms.md
Created November 2, 2023 03:10 — forked from disruptek/languages-and-vms.md
languages-and-vms

Language & VM design

Lexing & parsing

Writing own parser

  1. nimly - Lexer Generator and Parser Generator as a Library in Nim.

    With nimly, you can make lexer/parser by writing definition in formats like lex/yacc. nimly generates lexer and parser by using macro in compile-time, so you can use nimly not as external tool of your program but as a library.

@ed9w2in6
ed9w2in6 / frida_multiple_unpinning.js
Created March 9, 2023 03:28 — forked from akabe1/frida_multiple_unpinning.js
Another Android ssl certificate pinning bypass for various methods
/* Android ssl certificate pinning bypass script for various methods
by Maurizio Siddu
Run with:
frida -U -f [APP_ID] -l frida_multiple_unpinning.js --no-pause
*/
setTimeout(function() {
Java.perform(function() {
console.log('');
@ed9w2in6
ed9w2in6 / ANSI.md
Created October 26, 2021 03:06 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1b
  • Decimal: 27
@ed9w2in6
ed9w2in6 / git_private_repo_strategy.rb
Last active October 20, 2023 09:29 — forked from minamijoyo/hoge.rb
[2023-10-14] :: `brew` formula installing from GitHubPrivateRepositoryReleaseDownloadStrategy (removed form Homebrew core since v2)
# Write this file to somewhere named like `lib/git_private_repo_strategy.rb`, then
# add it like: `require_relative "lib/git_private_repo_strategy"` to your formula.
#
# This is based on the following, with first minor fixes by minamijoyo from Github.
# https://gist.github.com/minamijoyo/3d8aa79085369efb79964ba45e24bb0e
# https://github.com/Homebrew/brew/blob/193af1442f6b9a19fa71325160d0ee2889a1b6c9/Library/Homebrew/compat/download_strategy.rb#L48-L157
#
# Last modified by ed9w2in6 @ 2023 OCT 14.
# BSD 2-Clause License
@ed9w2in6
ed9w2in6 / macosx-configure-postfix-as-relay.md
Created August 17, 2021 03:17 — forked from loziju/macosx-configure-postfix-as-relay.md
Configure postfix as relay for OS X