Skip to main content

Can you acce Marianas web!!???

The legend of Mariana's Web appears to get its name from the deepest part of the ocean, Mariana's Trench. It's supposedly the deepest part of the web, a forbidden place of mysterious evil or at least, that's the myths a subset of online believers has cultivated. Marianas Web, named after the deepest ocean trench on Earth.
Source:
 The myth of Mariana's Web
The Dark Net is made for anonymity; the sharing of information without fear of detection or prosecution. Due to its nature this attract many people, both bad and good. some to speak freely of political jurisdiction and others to engage in all manners of illegal activity.
Like the ‘normal’ web, Marianas web has a range of topics, but mainly illegal. And that’s exactly what Marianas Web is, its the Deepest part of the Web, where people don’t want you to go.
Source:Marianas web and the other levels
Some intrepid Internet mavericks even claim that the Marianas Web is the location of a super intelligent form of female AI that has become sentient, and overlooks the Internet like some unfathomable digital mother nature.
You can only access this level using Polymeric Falcighol Derivation, which requires quantum computers to work. But quantum computers do not exists in real.
Even though the Marianas Web is a bit of a joke, the Deep Web certainly isn’t, and for me it captures all other Internet mysteries. It is a completely unregulated store of massive amounts of information with no real distinction between real and fake. Also, it’s filled with trolls and criminals, who thrive on misdirection and fear. At the end of the day, though, the Deep Web is still just a network of human-made activity: anything mysterious that happens inside it emanates from us, and our technology. Yet, the way people talk about it – with fear and reverence – almost feels like it’s somehow become the subconscious of the Internet, filled with our collective terrors, where ghosts, boogeymen, gods, myths and supernatural dreams of the past 10,000 years of civilization have been uploaded, and from where they will continue to haunt us into the future.
Source:
 The Four Greatest Unsolved Mysteries On The Internet

Comments

Popular posts from this blog

Bettercap : MITM attack for sniffing traffic and passwords

Bettercap : MITM attack for sniffing traffic and passwords Contents Installation Sniffing Traffic Getting password We will be installing Bettercap, doing a quick sniffing exercise, and then a more detailed section on grabbing the password. Will demonstrate the password grabbing on outlook.com, which seems to be particularly vulnerable to this attack. Installing bettercap Installation is simple- apt-get update apt-get dist-upgrade apt-get install bettercap The above three commands will leave you with latest versions of Kali and bettercap. PS: I am writing this tutorial from a location with slow internet connection, and hence didn't perform the dist-upgrade step. However, bettercap seems to be running  mostly  fine. There may be a few difference in what you observe and what I show in this demo due to this difference in versions. For those who want to know the versions of various utilities that I'm using, take a look below. If you are unfamiliar with...

Use Python To Detect And Bypass Web Application Firewall

Use Python To Detect And Bypass Web Application Firewall Web application firewalls are usually placed in front of the web server to filter the malicious traffic coming towards server. If you are hired as a penetration tester for some company and they forgot to tell you that they are using web application firewall than you might get into a serious mess. The figure below depicts the working of a simple web application firewall: As you can see its like a wall between web traffic and web server, usually now a days web application firewalls are signature based. What is a signature based firewall? In a signature based firewall you define signatures, as you know web attacks follow similar patters or signatures as well. So we can define the matching patterns and block them, i.e. Payload :- <svg><script>alert&grave;1&grave;<p> The payload defined above is a kind of cross site scripting attack, and we know that all these attacks can contain following sub...