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 |
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: file_extract.sh | |
# | |
# Description: | |
# This script allows you to interactively select a file from the current | |
# directory using fzf (a terminal-based fuzzy finder), then prompts you to | |
# input a search string (which can be a regex or plain text). The script | |
# uses grep (case-insensitive) to extract matching lines from the selected | |
# file, saving the output to: |
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 | |
""" | |
Tool: Comprehensive Local Python Project Helper | |
Description: | |
This tool performs several operations confined to its own directory: | |
- Searches for all .py files within the tool's own folder (recursive search). | |
- Sets up a Python virtual environment (named 'venv') and installs dependencies from requirements.txt. | |
- Provides a GUI prompt to add the tool's directory to your PATH by modifying ~/.bashrc. | |
- Displays a numbered list of .py files found within the tool's directory and lets the user launch one. | |
- Checks for and auto-applies script updates (requires proper configuration of update URLs). |
NewerOlder