โš™๏ธ Dark Web & .onion

Secure Link Preview โ€” Reveal Where Shortened URLs Go

Preview the real destination of shortened URLs before clicking. Unshorten bit.ly, tinyurl, t.co, and other short links to check for phishing or malware.

Secure Link Preview

Analyze any URL to see its components, detect shorteners, and identify suspicious patterns before clicking.

โš 

This tool cannot follow redirects or fetch remote content

Due to browser security restrictions (CORS), we cannot actually follow shortened URLs or fetch page metadata from the browser. This analysis is based purely on parsing the URL string.

To see where a shortened URL actually leads, you can run this command in your terminal:

curl -LI "https://bit.ly/example" 2>/dev/null | grep -i "^location:"

The -L flag follows redirects and -I fetches only headers. Each Location: header shows the next redirect in the chain.

Why preview links?

Previewing a URL before clicking helps you identify phishing attempts, malicious redirects, and tracking parameters. This is especially important on the dark web where links may impersonate legitimate services.

  • URL shorteners hide the real destination -- always expand before visiting
  • Phishing sites often use look-alike domains (e.g. g00gle.com instead of google.com)
  • Query parameters may contain tracking identifiers that reveal your source
  • HTTP (without S) means your traffic is unencrypted and can be intercepted
  • Internationalized domain names (IDN) can use characters that look identical to ASCII letters

โ“ Frequently Asked Questions

Why should I preview shortened links?+
Shortened URLs hide the real destination. Attackers use them to disguise phishing pages, malware downloads, and other malicious sites. Always preview before clicking unknown short links.
How does link preview work?+
The tool follows the redirect chain of a shortened URL without actually loading the final page, revealing each hop and the ultimate destination URL.
Which URL shorteners are supported?+
This tool works with all major shorteners including bit.ly, tinyurl.com, t.co, goo.gl, ow.ly, is.gd, and most other redirect-based URL shortening services.