Header Check
Checks a site's HTTP response against the OWASP secure headers baseline and scores what's missing.
This check cannot run in your browser — cross-origin rules hide other sites' response headers from web pages. Only the target URL is sent to this site's server to make the request; nothing you type anywhere else ever leaves your device.
Library Scan
Finds the JavaScript libraries a page loads and matches them against known vulnerabilities in the retire.js database.
This scan cannot run in your browser — cross-origin rules hide other sites' HTML from web pages. Only the target URL is sent to this site's server to fetch and inspect the page.
Certificate Check
Inspects a site's SSL/TLS certificate: validity, expiry, trust chain, hostname match, and which protocol versions the server offers.
This check cannot run in your browser — web pages cannot inspect TLS certificates. Only the target hostname is sent to this site's server to open the inspection connection.
JSON Beautify
Validates raw JSON and formats it — pretty-printed or minified, with the exact line and column when parsing fails.
Base64
Encodes text to Base64 and decodes Base64 back to text — UTF-8 safe, accepting both the standard and URL-safe alphabets.
JWT
Decodes JSON Web Tokens — header, claims, expiry — and verifies or creates HMAC signatures (HS256/384/512). Your secret never leaves this tab.
URL Encode
Percent-encodes text for URLs and decodes it back — component or whole-URL encoding, with the exact position when a sequence is malformed.
String Counter
Counts text the way machines see it — graphemes, code points, UTF-16 units, and bytes each differ, and length limits care about the difference.
UUID Generator
Generates UUIDs — v4 (random) or v7 (time-ordered, sortable — the better choice for database keys).
XML Beautify
Checks XML well-formedness and formats it — pretty-printed or minified, with the exact line and column when a tag is broken.
Hash Generator
Computes MD5, SHA-1, SHA-256, and SHA-512 digests of a text — MD5 and SHA-1 are marked weak: fine as checksums, never for passwords or signatures.
Text Diff
Compares two texts line by line and shows what was added, removed, and unchanged — with line numbers for both sides.
YAML Beautify
Validates YAML and re-indents it — comments and multi-document streams survive, and a broken document gets the exact line and column.
Regex Tester
Tests a JavaScript regular expression against a text, live — matches highlighted in place, with positions and capture groups. Runs entirely in your browser.
Timestamp
Converts between UNIX epochs and dates — paste seconds, milliseconds, or a date string; the format is detected automatically.
Color
Converts a color between hex, RGB, and HSL — with WCAG luminance and the contrast verdict for black or white text on it.