Skip to main content

Posts

Showing posts with the label Hacking

All About The Hidden Wiki (Darknet)

The Hidden Wiki is a website that operates as a directory for the dark web, listing various websites and services that are otherwise difficult to find through regular search engines. The term "dark web" refers to parts of the internet that are not accessible through traditional browsers and are not indexed by search engines. The Hidden Wiki itself is a Tor hidden service, meaning that it is only accessible through the Tor network, which allows users to access the web anonymously. The Hidden Wiki was first launched in 2007 and has since become a popular resource for those looking to explore the dark web. While the existence of dark web sites and their content is a matter of debate, the Hidden Wiki has several potential benefits for those who use it. One of the main advantages of the Hidden Wiki is its anonymity. The Tor network allows users to access the web without revealing their identity or location, which can be useful for individuals who live in countries with strict cens...

How To install Kali Linux (nethunter) On Android (Without root) via proot-distro and install Kali Linux Xfce Desktop On Android using Termux

What is kali linux? Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It is maintained and funded by Offensive Security , This tutorial isn't only about learning how to install Kali Linux. Okay let's run down what we will be doing                        Table Of Content •Installing Kali Linux Terminal •Installing Kali Linux Desktop •Installing Default packages  •Creating vncserver port •Closing vncserver port •Closing multiple vncserver ports  •Reseting Kali Linux •Uninstalling Kali Linux  Okay!!!! Let's Begin Requirements: • Termux  : Click Here To Download Termux   Installation:   Please you can also copy and paste the commands below    The First thing we have to do is to make sure our repositories are up to date, to do that type the command  pkg update   It is essent...

How To Create a Strong Virus And A Payload with Python 2023

Let’s start by saying that viruses are a little bit anachronistic in 2023… nowadays other kinds of  malware (like worms for example:) are far more common than viruses. Moreover, modern operative systems are more secure and less prone to be infected than MS-DOS or Windows 95 were (sorry Microsoft…) and people are more aware of the risk of malware in general. Moreover, to write a computer virus, probably Python is not the best choice at all. It’s an interpreted language and so it needs an interpreter to be executed. Yes, you can embed an interpreter to your virus but your resulting virus will be heavier and a little clunky… let’s be clear, to write a virus probably other languages that can work to a lower level and that can be compiled are probably a better choice and that’s why in the old days it was very common to see viruses written in C or Assembly. That said, it is still possible to write computer viruses in Python, and in this article, you will have a practical demonstration. T...