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
| #!/usr/bin/env python3 | |
| """ | |
| Metamorphose - AST-based Python self-mutator / obfuscation engine | |
| ================================================================= | |
| Proof that AI>Human when used correct every time. | |
| Use cases (intended, *benign*): | |
| - Generate multiple functionally identical variants of your own Python scripts | |
| for: | |
| - Red-team / blue-team **resilience testing** |
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
| #!/usr/bin/env bash | |
| # install_ai_clis.sh — Install Codex, Gemini CLI, and Jules with a user-local npm prefix (no sudo) | |
| # Packages: @openai/codex, @google/gemini-cli, @google/jules | |
| # Safe to re-run. Fixes the “npm -g writes to system dirs” problem. | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| log() { printf "\033[1;34m[INFO]\033[0m %s\n" "$*"; } | |
| warn() { printf "\033[1;33m[WARN]\033[0m %s\n" "$*"; } |
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
| #!/usr/bin/env python3 | |
| """ | |
| enhanced_audio_toolkit.py | |
| Advanced audio analysis toolkit for comprehensive batch processing of audio files. | |
| Supports multiple formats, generates detailed statistics, visualizations, and reports. | |
| Features: | |
| - Multi-format support (MP3, WAV, FLAC, M4A, OGG, etc.) | |
| - Advanced audio metrics and spectral analysis | |
| - Multiple visualization types (waveform, spectrogram, frequency analysis) |
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 | |
| # Script to set up an all-purpose C and Python development environment on Debian-based systems (e.g., Ubuntu). | |
| # This script installs essential compilers, build tools, debuggers, and libraries for both languages. | |
| echo "🚀 Starting all-purpose C and Python development environment setup..." | |
| # ------------------------------------------------------------------------------ | |
| # SECTION 1: SYSTEM UPDATE | |
| # ------------------------------------------------------------------------------ |
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
| #!/usr/bin/env python3 | |
| """ | |
| KEYPLUG-ANALYZER: Comprehensive Analysis Tool for KEYPLUG Extracted Payloads | |
| Performs in-depth analysis of potentially malicious content extracted by KEYPLUG tool | |
| Project: QUANTUM SHIELD | |
| Author: John | |
| Version: 1.1 | |
| """ | |
| import os |
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
| #!/usr/bin/env python3 | |
| import npyscreen | |
| import os | |
| import stat | |
| import shutil | |
| from pathlib import Path | |
| import subprocess | |
| import logging | |
| from datetime import datetime |
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
| #!/usr/bin/env python3 | |
| """ | |
| JSON File Partitioner | |
| --------------------- | |
| Splits a large JSON file into smaller chunks (10MB by default) | |
| while preserving the integrity of individual records. | |
| """ | |
| import os | |
| import json |
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
| /** | |
| * Qvortex Hash Library | |
| * | |
| * A lightweight cryptographic hash function with S-box and ARX operations. | |
| * This library version is designed to be compiled as a shared library | |
| * for integration with Python and other languages. | |
| */ | |
| #include <stdint.h> | |
| #include <stdio.h> |
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
| #!/usr/bin/env python3 | |
| """ | |
| sort_credentials.py | |
| TUI-style splitter for EMAIL:PASS dumps. | |
| • Lists all files in cwd and prompts you to pick one. | |
| • Creates Sortedmails/ and, for each domain, .txt, .csv, .json. | |
| • Supports resume via a hidden state file. | |
| • Shows a tqdm progress bar so you know it’s alive. |
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
| # --- Install xcaddy from the official repository --- | |
| sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https | |
| curl -1sLf 'https://dl.cloudsmith.io/public/caddy/xcaddy/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-xcaddy-archive-keyring.gpg | |
| curl -1sLf 'https://dl.cloudsmith.io/public/caddy/xcaddy/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-xcaddy.list | |
| sudo apt update | |
| sudo apt install -y xcaddy |
NewerOlder