Skip to content

Instantly share code, notes, and snippets.

View SWORDIntel's full-sized avatar
💭
Available for hire/consultation. Don't break the internet. Go @phoenix

Epimetheus SWORDIntel

💭
Available for hire/consultation. Don't break the internet. Go @phoenix
  • Highly skilled
  • Anywhere <24hrs for pay
View GitHub Profile
@SWORDIntel
SWORDIntel / enahnced_audio_toolkit.py
Created June 24, 2025 06:21
Enhanced RAM-fucking toolkit
#!/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)
#!/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
# ------------------------------------------------------------------------------
@SWORDIntel
SWORDIntel / keyplug.py
Last active May 21, 2025 21:03
KEYPLUG EXTRACTOR
#!/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
@SWORDIntel
SWORDIntel / AppImageIntergration.py
Created May 11, 2025 10:36
Intergrate an appimage interactively w/shortcut creation and perms
#!/usr/bin/env python3
import npyscreen
import os
import stat
import shutil
from pathlib import Path
import subprocess
import logging
from datetime import datetime
#!/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
@SWORDIntel
SWORDIntel / crackheadcrypto.c
Created May 7, 2025 04:51
Cryptography for crackheads
/**
* 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>
@SWORDIntel
SWORDIntel / ramnvmemailsort.py
Last active April 25, 2025 17:40
Sort Combos via RAM/NVME
#!/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.
@SWORDIntel
SWORDIntel / xcaddy.sh
Created April 25, 2025 15:55
Xcaddy builder
# --- 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
@SWORDIntel
SWORDIntel / extract.sh
Last active April 13, 2025 15:40
extract
#!/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:
@SWORDIntel
SWORDIntel / PyLaunch.py
Created April 12, 2025 23:23
Scan all python files for deps and offers a list to launch in a venv
#!/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).