DevTools Hub

Search tools

Search for a developer tool

Encoding

URL Inspector

Parse a URL, audit its encoding, and surface phishing and redirect red flags.

Part of the Encoding Toolkit
  • Uses http:, not https: — anything in this URL and its response travels unencrypted.
  • Contains embedded credentials before the @ — the actual host being requested is "example.net", not the text before the @. This is commonly used to disguise phishing links, and putting real secrets in a URL is deprecated (they often end up logged in plaintext).
  • Parameter "redirect" contains a URL — if this controls a server-side redirect, confirm it's checked against an allowlist (open-redirect risk).
Components
Protocolhttp:
Usernameaccounts-google.com
Hostnameexample.net
Port(default: 80)
Pathname/login
Search?redirect=http://evil.example&q=hello%2520world
Hash#sec%zz
Originhttp://example.net
Encoding check
Malformed % sequencePossibly double-encoded

Malformed in: fragment

Double-encoded in: parameter "q"

Decoded preview

A human-readable rendering with every part decoded — not necessarily a valid, re-usable URL itself.

What this checks

This combines a full component breakdown (like URL Parser) with an encoding audit and a set of automatic findings, so you don't have to eyeball a suspicious or malformed URL by hand:

The decoded preview renders every part — path, query values, fragment — fully human-readable in one line. It's a reading aid, not a URL you should paste back anywhere; use URL Builder to construct a real one.

FAQ

Why does the pathname shown not have the .. I typed?

The URL parser resolves dot-segments as part of normalizing the URL, before this tool ever sees pathname — that's standard, spec-defined behavior, not something this tool does. The traversal finding checks the input you typed, not the normalized result.

Is a punycode or userinfo finding proof something is malicious?

No — both have legitimate uses. They're flagged because they're also the mechanism behind two real, common URL-spoofing techniques, so they're worth a second look, not an automatic red flag.

Related tools