Cybersecurity-Projects/PROJECTS/beginner/base64-tool
Carter Perez 0fbd09c264
Update DEMO.md
2026-04-28 18:01:21 -04:00
..
assets chore: add demos for projects, update haskell-reverse-proxy modules, refresh siem assets 2026-04-26 23:12:48 -04:00
learn feat: complete base64tool 2026-02-09 07:26:42 -05:00
src/base64_tool feat: did a couple things idk 2026-02-28 14:08:36 -05:00
tests feat: did a couple things idk 2026-02-28 14:08:36 -05:00
.gitignore feat: complete base64tool 2026-02-09 07:26:42 -05:00
.style.yapf feat: complete base64tool 2026-02-09 07:26:42 -05:00
DEMO.md Update DEMO.md 2026-04-28 18:01:21 -04:00
Justfile feat: complete base64tool 2026-02-09 07:26:42 -05:00
LICENSE - Standardize READMEs and add justfiles across all 14 projects 2026-02-11 07:01:25 -05:00
README.md chore: add demos for projects, update haskell-reverse-proxy modules, refresh siem assets 2026-04-26 23:12:48 -04:00
pyproject.toml feat: complete base64tool 2026-02-09 07:26:42 -05:00
uv.lock chore(deps): bump pytest in /PROJECTS/beginner/base64-tool 2026-04-14 02:37:32 +00:00

README.md

██████╗  ██████╗ ██╗  ██╗████████╗ ██████╗  ██████╗ ██╗
██╔══██╗██╔════╝ ██║  ██║╚══██╔══╝██╔═══██╗██╔═══██╗██║
██████╔╝██║  ███╗███████║   ██║   ██║   ██║██║   ██║██║
██╔══██╗██║   ██║╚════██║   ██║   ██║   ██║██║   ██║██║
██████╔╝╚██████╔╝     ██║   ██║   ╚██████╔╝╚██████╔╝███████╗
╚═════╝  ╚═════╝      ╚═╝   ╚═╝    ╚═════╝  ╚═════╝ ╚══════╝

Cybersecurity Projects Python License: AGPLv3 PyPI

Multi-format encoding/decoding CLI with recursive layer detection for security analysis.

This is a quick overview — security theory, architecture, and full walkthroughs are in the learn modules.

Screenshots & demo →

What It Does

  • Encode and decode Base64, Base64URL, Base32, Hex, and URL formats
  • Auto-detect encoding format with confidence scoring
  • Peel command recursively strips multi-layered encoding (WAF bypass analysis)
  • Chain multiple encoding steps to test obfuscation patterns
  • Pipeline-friendly output for integration into security workflows

Quick Start

uv tool install b64tool
b64tool encode "Hello World"

[!TIP] This project uses just as a command runner. Type just to see all available commands.

Install: curl -sSf https://just.systems/install.sh | bash -s -- --to ~/.local/bin

Commands

Command Description
b64tool encode Encode text into Base64, Base64URL, Base32, Hex, or URL format
b64tool decode Decode encoded text back to plaintext
b64tool detect Auto-detect the encoding format with confidence scoring
b64tool peel Recursively strip multi-layered encoding to reveal original data
b64tool chain Chain multiple encoding steps together for obfuscation testing

Learn

This project includes step-by-step learning materials covering security theory, architecture, and implementation.

Module Topic
00 - Overview Prerequisites and quick start
01 - Concepts Security theory and real-world breaches
02 - Architecture System design and data flow
03 - Implementation Code walkthrough
04 - Challenges Extension ideas and exercises

License

AGPL 3.0