Skip to content

Instantly share code, notes, and snippets.

View fuzzbuster's full-sized avatar
:octocat:
Studying Ninjutsu hard

N1nJi4.X fuzzbuster

:octocat:
Studying Ninjutsu hard
  • Pentest Ninja Dojo
  • 木ノ葉の里
View GitHub Profile
@bewithdhanu
bewithdhanu / uninstall_openclaw_mac.md
Created January 31, 2026 11:36
🧹 OpenClaw Complete Uninstall Guide (All Platforms)

🧹 OpenClaw Complete Uninstall Guide (All Platforms)

This guide covers all supported ways to fully remove OpenClaw, including cases where the CLI is missing but background services are still running.


🟢 Path 1: Easy Path (CLI Still Installed)

Use this if the openclaw command still works.

@hackermondev
hackermondev / writeup.md
Last active April 17, 2026 12:05
How we pwned X (Twitter), Vercel, Cursor, Discord, and hundreds of companies through a supply-chain attack

hi, i'm daniel. i'm a 16-year-old high school senior. in my free time, i hack billion dollar companies and build cool stuff.

about a month ago, a couple of friends and I found serious critical vulnerabilities on Mintlify, an AI documentation platform used by some of the top companies in the world.

i found a critical cross-site scripting vulnerability that, if abused, would let an attacker to inject malicious scripts into the documentation of numerous companies and steal credentials from users with a single link open.

(go read my friends' writeups (after this one))
how to hack discord, vercel, and more with one easy trick (eva)
Redacted by Counsel: A supply chain postmortem (MDL)

@pksunkara
pksunkara / config.toml
Last active April 21, 2026 21:18
Sample of jj config file (Example jj/config.toml) (Place them in $XDG_CONFIG_HOME/jj)
'$schema' = 'https://jj-vcs.github.io/jj/latest/config-schema.json'
[user]
name = 'Pavan Kumar Sunkara'
email = 'pavan.sss1991@gmail.com'
username = 'pksunkara'
[ui]
default-command = 'default'
editor = 'nvim'
@ishad0w
ishad0w / manifest-v2.md
Created November 17, 2024 02:59
macOS how to Enable Manifest V2 extensions for another year (until June 2025)

Arc

defaults write company.thebrowser.Browser.plist ExtensionManifestV2Availability -int 2

Chrome

defaults write com.google.Chrome.plist ExtensionManifestV2Availability -int 2

Chrome Beta

@boydaihungst
boydaihungst / github_to_gitea_batch
Created March 17, 2024 13:01
github_to_gitea_batch
#!/bin/bash
GITHUB_USERNAME=
GITHUB_TOKEN=
GITHUB_ORGANISATION=
GITHUB_API_CALL=
GITHUB_MAX_PER_PAGE=100
GITHUB_CURRENT_PAGE=1
GITEA_TOKEN=
@0xdevalias
0xdevalias / reverse-engineering-golang.md
Last active April 18, 2026 17:58
Some notes, tools, and techniques for reverse engineering Golang binaries
@april
april / find-all-electron-versions.sh
Last active November 5, 2025 08:49
find all apps using Electron and their versions, on macOS systems
# latest supported electron version as of october 2024
LATEST_SUPPORTED_VERSION=30
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m' # no color
mdfind "kind:app" 2>/dev/null | sort -u | while read app;
do
filename="$app/Contents/Frameworks/Electron Framework.framework/Electron Framework"
if [[ -f $filename ]]; then
@maurerle
maurerle / make-debian-cloudinit-template.sh
Last active October 7, 2025 21:39
Script to create a cloud-init debian VM template for Proxmox from a debian cloud image
#!/bin/bash
# makes a cloud-init template vm from URL
# call like ./make-debian-template.sh 9000
# Check for root priviliges
if [[ $EUID -ne 0 ]]; then
printf "Please run as root:\nsudo %s\n" "${0}"
exit 1
fi
@hamid-rostami
hamid-rostami / README.md
Last active January 15, 2026 13:36
wireguard over TCP

To pass wireguard's traffic through a TCP tunnel by using udp2raw

Requirements

For Arch linux, install udp2raw by pacman: pacman -S udp2raw

For Debian or Ubuntu, you can use a binary release from: https://github.com/wangyu-/udp2raw/releases

@izadgot
izadgot / Android_WebView_inspector.js
Last active May 22, 2024 17:22
sample Frida script for analyse Android WebView
//Moved to https://github.com/Incognito-Lab/Frida-WebView-Inspector
//frida -U "<ProcessName>" -l Android_WebView_inspector.js
let Webview = Java.use("android.webkit.WebView");
// inspect settings of android.webkit.WebView class
Java.choose("android.webkit.WebView", {
// check if there are any running webview instances
onMatch: function(instance) {
// webview must be running on the main thread, so scheduleOnMainThread() will force the function to run on the main thread
Java.scheduleOnMainThread(function(){