This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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" |