Skip to content

Instantly share code, notes, and snippets.

View KewbitXMR's full-sized avatar
🎯
Focusing

Kewbit KewbitXMR

🎯
Focusing
View GitHub Profile
@KewbitXMR
KewbitXMR / android_install.sh
Created July 13, 2025 20:04
Haveno Android Installer (via Termux)
#!/data/data/com.termux/files/usr/bin/bash
set -e
pkg update -y && pkg install -y curl wget proot tor openssl unzip xz-utils
# Install Java 21 via Adoptium
ARCH=$(uname -m)
case "$ARCH" in
aarch64) JDK_ARCH="aarch64"; ARCH_LABEL="arm64-v8a" ;;\n armv7l) JDK_ARCH="arm"; ARCH_LABEL="armeabi-v7a" ;;\n x86_64) JDK_ARCH="x64"; ARCH_LABEL="x86_64" ;;\n *) echo \"Unsupported arch: $ARCH\"; exit 1 ;;\nesac
@KewbitXMR
KewbitXMR / kewnix_installer.sh
Last active July 12, 2025 05:02
Kewnix Installer for Secure Whonix-Like Docker Container Protection
#!/bin/bash
# Kewnix Installer
set -e
REPO_URL="https://github.com/KewbitXMR/kewnix"
INSTALL_DIR="$HOME/.local/share/kewnix"
echo "[+] Cloning latest Kewnix to $INSTALL_DIR..."
rm -rf "$INSTALL_DIR"
# Author: Kewbit.org
# Description: Hardened TOR-based orchestrator for Docker containers with isolated networking, circuit-level Tor routing, and optional container access control.
set -e
# === GLOBALS ===
TOR_GW_NAME="tor-gateway"
DEFAULT_TOR_IP="192.168.100.2"
BRIDGE_PREFIX="kewnet" # Changed for consistent prefix
BASE_SUBNET="192.168"