Skip to content

Instantly share code, notes, and snippets.

View 0x1881's full-sized avatar
🎯
Focusing

Mehmet Can 0x1881

🎯
Focusing
View GitHub Profile
#!/bin/bash
#set -e
# ============ 平台检测 =============
detect_platform() {
case "$(uname -s)" in
Darwin)
OS="macOS"
SHA_TOOL="shasum"
OPEN_CMD="open"
@lemonadeforlife
lemonadeforlife / imdbWatchHistoryExportCSV.user.js
Created March 24, 2026 09:45
Export your imdb watch history as CSV format
// ==UserScript==
// @name IMDB Watch History Exporter
// @namespace https://www.imdb.com/
// @version 0.1.0
// @description Export your IMDB watch history to CSV
// @author lemonade
// @match https://www.imdb.com/user/*/watchhistory/*
// @match https://www.imdb.com/user/*/watchhistory
// @grant GM_addStyle
// @grant GM_xmlhttpRequest
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active September 10, 2026 12:02
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@approovm
approovm / 00-android-bypass-certificate-pinning-and-mitm-attack-setup.md
Last active March 8, 2026 22:21
Certificate Pinning Bypassing: Setup with Frida, mitmproxy and Android Emulator with a writable file system
1.Run git clone <my-cool-project>
2.Run composer install
3.Run cp .env.example .env
4.Run php artisan key:generate
5.Run php artisan migrate
6.Run php artisan serve
7.Go to link localhost:8000
@eldhosejoys
eldhosejoys / index.php
Last active February 4, 2023 07:54
Simple URL Generator for Google Redirect Notice Links. This may be useful in case of building backlinks (for increasing DR in Ahrefs), etc... Demo: http://siteurls.22web.org
<?php
$url = $_GET['url'];$url =htmlspecialchars($url);
$subdomains = array("maps","www","images","image","cse");
$tlds = array("com","it","co.in","cl","cr","pl","ch","br","com.au","es","co.ao","ca","be","com.au","com.br","ru","co.uk","ae","com.co","ee","gr","com.hk","hr","hu","lt","com.mx","no","com.ph","pt","ro","rs","se","si","sk","co.th","com.tw","com.ua","com.ar","ie","co.nz","com.vn","cz","fi","com.ng","com.ag","com.ai","co.ao","as","ba","com.bd","bf","bg","com.bh","bi","bj","com.bn","bs","bt","co.bw","by","com.bz","cat","cf","cg","ci","co.ck","cm","co.cr","com.cu","dj","dm","com.do","dz","com.eg","com.et","com.fj","ga","ge","gg","com.gh","com.gi","gl","gm","gp","com.gt","gy","hn","ht","im","is","je","com.jm","jo","co.ke","kg","ki","com.kw","kz","la","com.lb","li","lk","co.ls","lv","com.ly","mg","mk","ml","com.mm","mn","ms","com.mt","mu","mv","mw","co.mz","ne","com.np","nr","nu","com.om","com.pa","com.pg","pn","com.pr","com.py","com.qa","rw","com.sa","com.sb","sc","sh","com.sl","sm","sn","so","st","com.
@hizkifw
hizkifw / cloudflare-worker-youtube-dl.js
Last active July 22, 2026 20:16
Download YouTube videos with Cloudflare Worker
/**
* cloudflare-worker-youtube-dl.js
* Get direct links to YouTube videos using Cloudflare Workers.
*
* Usage:
* GET /?v=dQw4w9WgXcQ
* -> Returns a JSON list of supported formats
*
* GET /?v=dQw4w9WgXcQ&f=251
* -> Returns a stream of the specified format ID
@QAutomatron
QAutomatron / connect-docker.sh
Last active November 10, 2025 15:18
Start Android emulator farm
#!/bin/bash
for i in {10..60}; do adb connect 172.17.0.1:56$i; done
@ifiokjr
ifiokjr / ADB Instructions.md
Last active September 26, 2026 14:11
Android Platform Tools