My Games
Account π
Sign Up
Login
Global Leaderboard
Case Vault
Badge Backpack
Blue Team Glossary
Login and start playing
Leaving so soon?
×
You really want to log out? We were having so much fun!
Home
βΊ
Glossary
βΊ
url
Url
Definition
A URL (**Uniform Resource Locator**) is the address you type into a browser to access something on the web β like a webpage, image, video, or file. It tells your browser **where** to go and **how** to get there. Example: ``` https://login.example.com:8080/account/reset?user=tom#section2 ``` Breaking down the parts: **1. Scheme (Protocol)** β `https://` Tells the browser how to communicate with the server. Common ones: `http`, `https`, `ftp`, `mailto`. **2. Host (Domain or IP)** β `login.example.com` The serverβs address. Can be a domain name (`example.com`) or an IP address (`203.0.113.50`). **3. Port (Optional)** β `:8080` Specifies the network port to connect to. Default ports (80 for HTTP, 443 for HTTPS) are usually omitted. **4. Path** β `/account/reset` The location of the resource on the server, often mapping to a file or route. **5. Query String (Optional)** β `?user=tom` Key-value pairs sent to the server. Multiple parameters are separated by `&`. Example: `?user=tom&reset=true`. **6. Fragment (Optional)** β `#section2` Points to a specific part of the page. The fragment is handled by the browser and isnβt sent to the server. In investigations, URLs are critical because they can reveal: * Malicious domains or IP addresses used in phishing or malware delivery * Suspicious parameters (e.g., `?file=../../etc/passwd` for directory traversal) * Infrastructure reuse between different attacks * Whether a link uses HTTP vs. HTTPS (which can affect security) Real-world examples: * Many phishing kits hide malicious payloads in long, obfuscated query strings. * Malware download URLs often use unusual ports (`:8080`, `:4444`) to evade detection. * Ransomware leak sites are often accessed via `.onion` URLs on the Tor network. Further reading: * W3C URL Standard: [https://url.spec.whatwg.org/](https://url.spec.whatwg.org/) * MDN Web Docs β URL Anatomy: [https://developer.mozilla.org/en-US/docs/Learn/Common\_questions/Web\_mechanics/What\_is\_a\_URL](https://developer.mozilla.org/en-US/docs/Learn/Common_questions/Web_mechanics/What_is_a_URL) * OWASP URL Security: [https://owasp.org/www-community/attacks/URL\_Redirector\_Abuse](https://owasp.org/www-community/attacks/URL_Redirector_Abuse)
Explore More Terms
Comment
Threat Hunting
Ip-Address
Initial Access
Intrusion