Skip to content

ZeroTrace OSINT

Encoders & Decoders

Base64, hex, JSON formatting, port reference — the format-conversion utilities you reach for many times a day.

A cluster of small, format-conversion tools that share a common purpose: take a string in one shape and return it in another. Each is one of the most-used tools in the application, but each is small enough that a single page covers them all.

Base64

ModeWhat it does
EncodePlain text or bytes → base64
DecodeBase64 → plain text or bytes
Auto-detectDetects mode from input shape
VariantsStandard / URL-safe / no-padding (try-all-variants tab shows what each produces)
Binary detectionEntropy + null-byte rate flags binary content
Chained pipePipe the decoded output into hex / JSON-format / JWT detect with one click

The chained pipe is the unsung-hero feature. Often a base64-decoded string is itself something else (JSON, JWT, encoded UTF-16, another base64) — the pipe handles the next step without manually copying the intermediate result.

Hex Converter

ModeWhat it does
Hex → text48656c6c6fHello
Text → hexHello48656c6c6f
ASCII previewSide-by-side ASCII column alongside hex (catches printable substrings inside binary blobs)
Endianness swapSwap byte order — useful for little-endian / big-endian conversions
Width formatter8 / 16 / 32-byte rows for readability
Sibling outputsBinary, octal, decimal alongside hex

Particularly useful for inspecting magic-byte sequences, decoded protocol fields, and small binary blobs without firing up a hex editor.

JSON Formatter

ModeWhat it does
PrettyFormat with chosen indent
MinifyStrip whitespace
ValidateConfirm valid JSON; flag the error location if not
JSONPath queryExtract a specific field via JSONPath
StatsKey / value count, max depth
Flatten to dot-notation{a: {b: 1}}{"a.b": 1}
Sort keysAlphabetical / reverse / preserve
JWT auto-detectIf a string-valued field looks like a JWT, offer one-click decode

Port Reference

FieldWhat it shows
PortStandard service port
Service nameCanonical name (HTTP, HTTPS, SSH, etc.)
DescriptionWhat the service does
CategoryWeb / Mail / Database / Remote / DNS / etc.
Common nmap scriptThe default Nmap script for the port
Curated CVE / exploit notesBrief notes on common exploits per service (defensive context)

Bulk-paste mode lets you paste a list of port numbers and get the full reference table back.

CIDR & IP-range tools

These also live as part of the Network & IP discipline — the calculator, range expander, and mask preview. They are linked here for completeness but documented in the Network section.

The encoders are perfect candidates for the command palette (Ctrl+K). Type "base", "hex", "json" and the right tool surfaces immediately. For frequently-used tools, pin them to the top of the sidebar (right-click → Pin) and they stay one click away.

Bulk paste

Every tool in this group supports bulk paste. Lines in, converted lines out, exported as CSV / clipboard / Markdown.

Sources

All conversion is local. No external sources are queried.

Command Palette

Search for a command to run...