Skip to main content

INSTALL KALI LINUX IN VM




DEVELOPERS           Offensive Security
LINUX BASE              Debian Base
LATEST VERSION   2017.2

Download : Kali ISO 

Follow the Images for better understanding.

1)OPEN Virtual Machine > click 'Create New Virtual machine > chose 'Typical' and click Next




2)Now Chose 'Installer Disk  image File (ISO)' and click Browse button and chose downloaded Kali ISO file from your PC
3)Click 'Next' >Chose Linux and Find (Version) Other Linux 3.x Kernel 64-bit from drop-down menu (If you downloaded 64-bit kali)
4)Provide a name for your virtual machine (anything)
   VM default directory is 'Documents' Folder'.So, No need to change.

5)click 'Next' and allocate virtual storage size to install Kali in VM.25GB is more enough.
   Chose 'Store Virtual disk as a single file'.Click 'Next'.
6)Now click 'finish' button.Once you click Finish button VM will build the virtual files then final Kali virtual machine menu window will open.

Now Click 'Start Virtual Machine' and follow below link to continue installation.
click here to continue KALI BOOTING PROCESS



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