Skip to main content

What is deep web? Comparison between Deep Web, Surface Web and Dark Web. How do you access it?

 

Deep Web: The Deep web is a part of the World Wide Web whose contents are not publically accessible like Bank Accounts, Email Storage, Private Database, Facebook Message anything that traditional search engine like Google, Bing, Yahoo etc. cannot access. The term “Deep Web” comes from Michael K. Bergman a computer scientist in 2001. It is a large portion of the internet estimated at 95%.

Surface Web: The Surface Web (also called the Visible Web, Indexed Web) is a small part of the World Wide Web that is readily available to the general public and searchable with standard web search engines like Google, Bing, Yahoo etc. It is the opposite of the deep web. It is a small portion of the internet estimated at 5%.
Pic: Surface, Deep and Dark Web (From Google)
Dark Web: The Dark web is the small part of the Deep Web where websites are purposely hidden like Drug Markets, Whistleblower sites, Hacktivist, Illegal business etc. Its content exists on darknets, overlay networks which use the public Internet but require specific software, configurations or authorization to access. It is a very small portion of the internet estimated at 0.03%.

Dark Web includes:
  • Illegal Business like Drugs, Smuggling etc.
  • Disturbing Images (no more that the normal web).
  • Illegal Pornography.
  • Hacktivist sites, Forums, blogs, Chat rooms.
  • The website for free speech.
  • Others Everything else which is not generally legal.
Fig: Portion of Surface, Deep and Dark Web.
Sometimes the term "Deep Web" is mistakenly used to refer specifically to the Dark Web. Actually, Dark Web is a very small portion of Deep Web which is widely used for the illegal operation.

How to stay safe on Deep Web:
  • Don't buy illegal things.
  • Don't give any personal information.
  • Don't click on links randomly.
  • Don't be rude.
How can you access to Deep Web or Dark Web?

The TOR network is an anonymous network that can only be accessed with a special web browser, called the TOR browser.

Properties of TOR:
  • Proxy and Browser that can access the Deep Web as well as Dark Web.
  • Can be used anonymously to browse the surface web.
  • Usually used for Dark Web.
  • Free to use.
You can download this browser from https://www.torproject.org.

Comments

Popular posts from this blog

What is the difference between React JS and React Native? Properties of React JS and React Native.

  ReactJS  is a JavaScript library, supporting both front end web and being run on the server, for building user interfaces and web applications. React Native  is a mobile framework that compiles to native app components, allowing you to build native mobile applications (iOS, Android, and Windows) in JavaScript that allows you to use ReactJS to build your components, and implements ReactJS under the hood.

Must-Know Security Practices for Every Full Stack Developer should know in 2025

  Must-Know Security Practices for Every Full Stack Developer should know in 2025 In today's world of rapid development, ignoring security can cost more than just downtime. Whether you're building SaaS, eCommerce, or APIs — security must be baked into every layer . Here’s a power-packed checklist every Full Stack Developer should follow: Frontend Security 1. XSS Attack (Cross-Site Scripting) Never trust user input. Sanitize all dynamic content. ❌ dangerouslySetInnerHTML (React) ✅ Use v-text or auto-binding (Vue, Angular) 2. CSRF Attack (Cross-Site Request Forgery) Session cookies can betray you. ✅ Use SameSite=Strict cookies + CSRF tokens. 3. Secure Local Storage Don’t store access tokens in localStorage . ✅ Use HttpOnly cookies instead. 4. CSP Headers Prevent malicious scripts. ✅ Add Content-Security-Policy: script-src 'self' Backend Security 1. CORS Policy (Cross-Origin Resource Sharing) Only allow known origins. ✅ Acc...