Skip to main content

Best for Pen-Test


Hi Folks!!! In this article, we going to discuss which one is the best platform to practice penatration tests.

NOTE :
Windows lovers please go back, it will hurt you.

TOP 3 Operating Systems : (numbers only for reference)

 1)Kali
2)Black Arch
3)Parrot Security OS

KALI



DEVELOPERS           Offensive Security
LINUX BASE              Debian Base
LATEST VERSION   2020.2

Kali has 600+ preinstalled tools inside.Which is best for beginners who starting penetration testing.For a forensic job, this top hacking operating system comes with a live boot capability that provides a perfect environment for vulnerability detection.

Official Website : HTTPS://Kali.org/

DOWNLOAD :    Kali ISO    Kali VM,VirtualBox,Hyper-V


BLACK ARCH

DEVELOPERS          Arch Linux Community
LINUX BASE            Arch Linux
LATEST VERSION  2020.06.01

Black Arch repository contains 1908 tools.Arch Linux installation different from normal installation.Which is best for Linux Professionals and well-knowledged Pen-Testers/Hackers.

Official Website :  https://blackarch.org/

DOWNLOAD    :  BlackArch ISO,OVA


Parrot Security OS


DEVELOPERS         Frozenbox-Team
LINUX BASE            Debian
LATEST VERSION  4.10

This cloud-friendly Linux distribution is designed for ethical hacking, pen testing, computer forensics, ethical hacking, cryptography etc. Compared to others, Parrot Security OS promises a lightweight OS that is highly efficient. Along with its plethora of legally recognized tools, you also get the opportunity to work and surf anonymously.

Parrot Security Linux available for different platforms.Check it in Download page.

OFFCIAL WEBSITE : https://www.parrotsec.org/

Comments

Popular posts from this blog

KARMA - Search for leaked Emails and Passwords

Hi Everyone, In this article we going to introduce the tool is KARMA.Its used to collect pwned Email address and passwords from pwndb. The tool is written in python3. So, you must need Python3 inside your machine . INSTALL sudo apt install tor python3 python3-pip git clone https :// github . com / decoxviii / karma . git ; cd karma sudo -H pip3 install -r requirements.txt python3 bin/karma.py --help TEST All the tests were done in  Debian/Ubuntu . Search emails with the password:  123456789 python3 bin/karma.py search '123456789' --password -o test1 Search emails with the local-part:  johndoe python3 bin/karma.py search 'johndoe' --local-part -o test2 Search emails with the domain:  hotmail . com python3 bin/karma.py search ' hotmail . com ' --domain -o test3 Search email password:  johndoe@unknown.com python3 bin/karma.py target 'johndoe@unknown.com' -o test4 DEMO VIDEO