Don't like ads? Go Ad-Free Today

Security Tools

ADVERTISEMENT · REMOVE?

Certificate Transparency Log Lookup

Certificate Transparency Log Lookup The Certificate Transparency Log Lookup queries public Certificate Transparency (CT) logs through the crt.sh aggregator to show every SSL/TLS certificate that has been issued for a domain. Enter a domain and instantly see which certificate authorities issued certificates, when they are valid, and which hostnames and subdomains they cover. Because the ...

Try the Tool »

HSTS Preload Header Generator

HSTS Preload Header Generator Build a correct Strict-Transport-Security header in seconds. Toggle max-age, includeSubDomains, and preload, then copy a ready-to-paste header value and matching server config. A live eligibility checklist tells you whether your header meets the rules for the browser preload list at hstspreload.org. How to Use Pick a max-age duration, or choose Custom ...

Try the Tool »

Argon2 Hash Generator

Argon2 Hash Generator Generate real Argon2 password hashes right in your browser. Argon2 is the modern, memory-hard password-hashing algorithm that won the Password Hashing Competition, and it is the recommended choice for storing passwords securely. This tool computes genuine Argon2id, Argon2i and Argon2d hashes using a WebAssembly engine — your password, salt and resulting hash ...

Try the Tool »

CIDR Overlap / Subnet Conflict Checker

CIDR Overlap / Subnet Conflict Checker Paste a list of CIDR ranges and instantly see which ones overlap. The checker performs exact bitwise comparison of every pair of subnets — for both IPv4 and IPv6 — and reports the precise conflicting address range and how many addresses collide. It is built for network engineers planning ...

Try the Tool »

OAuth 2.0 Authorization URL Builder

OAuth 2.0 Authorization URL Builder Assembling an OAuth 2.0 authorization request by hand is fiddly: every parameter has to be percent-encoded exactly, the PKCE code_challenge has to be a base64url-encoded SHA-256 hash of a random verifier, and the state and nonce values need to be unpredictable. Get one character wrong and the provider bounces you ...

Try the Tool »

SQL Parameterizer

SQL Parameterizer SQL Parameterizer turns a query full of hardcoded values into a safe, reusable prepared statement. Paste SQL with inline string and numeric literals and instantly get back a parameterized query plus the extracted values as a JSON array — ready to bind in your application code. How to Use Paste your SQL into ...

Try the Tool »

API Secret Scanner & Redactor

API Secret Scanner & Redactor The API Secret Scanner & Redactor finds hardcoded credentials in code, configuration files, and logs, then rewrites them so the text is safe to share. Paste a snippet and it instantly highlights AWS keys, GitHub and GitLab tokens, Stripe and Square keys, JSON Web Tokens, private key blocks, database connection ...

Try the Tool »

TLS/SSL Config Snippet Grader

TLS/SSL Config Snippet Grader Paste an Apache or Nginx TLS/SSL configuration block and get an instant A–F grade based on Mozilla’s Server Side TLS guidelines. The grader flags deprecated protocols, weak ciphers, missing HSTS, and other security issues, then suggests a Mozilla-aligned replacement snippet you can drop straight into your server config. How to Use ...

Try the Tool »

JSON Web Key (JWK) Set Generator

JSON Web Key (JWK) Set Generator Generate cryptographic signing keys in JSON Web Key format and assemble them into a JWKS (JSON Web Key Set) ready to publish at /.well-known/jwks.json. Supports RSA, RSA-PSS and ECDSA across the full JWA range (RS256/384/512, PS256/384/512, ES256/384/512). Every key is generated locally in your browser via the Web Crypto ...

Try the Tool »

Kubernetes ConfigMap & Secret Generator

Kubernetes ConfigMap & Secret Generator Build kubectl-ready Kubernetes ConfigMap and Secret manifests from a simple list of KEY=value pairs. The generator validates resource names against RFC 1123, base64-encodes Secret values for the data field, and emits clean YAML that you can pipe straight into kubectl apply -f -. No data leaves your browser. How to ...

Try the Tool »

Password Hash Crack Time Estimator

Password Hash Crack Time Estimator Estimate how long it would take a real-world attacker to brute-force a password protected by a specific hashing algorithm. The estimator pairs Hashcat-grade hash rates with the keyspace of your chosen password composition, then reports a crack time across four attacker tiers: a budget GPU, a single RTX 4090, a ...

Try the Tool »

CSR (Certificate Signing Request) Generator

CSR (Certificate Signing Request) Generator Generate a PKCS#10 Certificate Signing Request and matching RSA private key entirely in your browser. Fill in the subject fields, add Subject Alternative Names, pick a key size, and click Generate. Both files are produced locally — the private key is never transmitted to any server, never logged, and never ...

Try the Tool »

Merkle Tree Generator & Visualizer

Merkle Tree Generator & Visualizer Paste a list of values, choose a hash function, and instantly see a visual Merkle tree with every intermediate node hash and the final Merkle root. Pick SHA-256, SHA-1, or Keccak-256 (the hash Ethereum uses), tune the Bitcoin-style odd-leaf rule or the OpenZeppelin sorted-pair convention, and export the full tree ...

Try the Tool »

Playfair Cipher Encoder & Decoder

Playfair Cipher Encoder & Decoder Encrypt or decrypt text with the classic Playfair cipher entirely in your browser. Enter a keyword, paste your plaintext or ciphertext, and watch the tool build the 5×5 keyed matrix, prepare the digraphs, and walk through every substitution step. No data ever leaves your device. How to Use Pick a ...

Try the Tool »

Ethereum / EVM Address Checksum Validator (EIP-55)

Ethereum / EVM Address Checksum Validator Paste any Ethereum or EVM-compatible address and instantly check whether its mixed-case checksum is correct under EIP-55. The tool also returns the canonical checksummed form so you can copy a safe version back into your wallet, contract, or block explorer. Everything runs locally in your browser — no addresses ...

Try the Tool »

Email Deliverability Checker

Email Deliverability Checker Audit a domain’s email authentication setup in seconds. Enter any domain and the tool runs live DNS lookups against Cloudflare’s resolver to inspect SPF, DMARC, MX, and BIMI records, then surfaces real configuration problems with a clear pass/fail verdict and an overall deliverability score. How to Use Type the domain you want ...

Try the Tool »

ECDSA / Ed25519 Key Generator

ECDSA / Ed25519 Key Generator Generate cryptographically secure elliptic-curve key pairs in your browser using the Web Crypto API. Pick Ed25519, ECDSA P-256, or ECDSA P-384, and export in PEM (PKCS8/SPKI), JWK, or raw hex format. Useful for JWT signing (ES256, EdDSA), Signal-style protocols, libsodium interop, and any general-purpose elliptic-curve cryptography that is not OpenSSH-flavored. ...

Try the Tool »

PKCE Code Verifier & Challenge Generator

PKCE Code Verifier & Challenge Generator Generate RFC 7636-compliant PKCE values right in your browser. Pick a verifier length (43–128 characters), and the tool produces a cryptographically random code_verifier together with the matching SHA-256 code_challenge in base64url form, ready to drop into any OAuth 2.0 or OAuth 2.1 authorization request. Useful for SPAs, mobile apps, ...

Try the Tool »

SAML Response Decoder

SAML Response Decoder Paste a base64-encoded SAML response or assertion and instantly see the decoded XML alongside a summary of the most important fields. Handles URL-encoded payloads and DEFLATE-compressed strings used by SAML’s HTTP-Redirect binding, all in your browser — nothing is uploaded. How to Use Capture the SAML response from your IdP — usually ...

Try the Tool »

Character Frequency Analyzer

Character Frequency Analyzer Paste any text and instantly see how often every character appears. The Character Frequency Analyzer counts every letter, digit, or symbol, ranks them, shows percentages, and renders a visual bar chart so you can spot patterns at a glance. It is a go-to companion for cryptanalysis, linguistics homework, password audits, content audits, ...

Try the Tool »
Want To enjoy an ad-free experience? Go Ad-Free Today

Install Our Extensions

Add IO tools to your favorite browser for instant access and faster searching

Add to Chrome Extension Add to Edge Extension Add to Firefox Extension Add to Opera Extension

Scoreboard Has Arrived!

Scoreboard is a fun way to keep track of your games, all data is stored in your browser. More features are coming soon!

ADVERTISEMENT · REMOVE?
ADVERTISEMENT · REMOVE?
ADVERTISEMENT · REMOVE?

News Corner w/ Tech Highlights

Get Involved

Help us continue providing valuable free tools

Buy me a coffee
ADVERTISEMENT · REMOVE?