Configuring Kali Machine Web Application Penetration Testing ‘17
Configuring Kali Machine Let’s Configure our Kali Machine fully to perform a pentest.
Updating & Upgrading Kali linux >> sudo apt-get update >> sudo apt-get upgrade
Installing gedit >> apt-get install gedit
Changing Hostname >> gedit /etc/hostname Change Kali to “specified hostname”. >>gedit /etc/hosts
Testing Internet Access Ping <target> Ex. Ping www.google.com If host is up, it will reply with the packets, else packets will be dead. It will connect to the host only and only if you are on active connection.
Installing Nessus Download Nessus Package - http://www.tenable.com/products/nessus-home/ >> dpkg –I <file path> Start Nessus >> /etc/init.d/nessusd start Open url https://kali:8834 Login to Nessus.
Installing Ming C Compiler >> apt-get install mingw-w64
Installing Hyperion >> wget http://nullsecurity.net/tools/binary/Hyperion-1.2.zip >> unzip Hyperion-1.2.zip >> i686-w64-mingw32-c++ Hyperion-1.2/Src/Crypter/*.cpp -o hyperion.exe
Installing Etherape >> apt-get install etherape
Installing The Backdoor Factory git clone https://github.com/secretsquirrel/the-backdoor-factory /opt/the- backdoorfactory cd the-backdoor-factory ./install.sh
Some Custom Scripts by Cheetz git clone https://github.com/cheetz/Easy-P.git /opt/Easy-P git clone https://github.com/cheetz/Password_Plus_One /opt/Password_Plus_One git clone https://github.com/cheetz/PowerShell_Popup /opt/PowerShell_Popup git clone https://github.com/cheetz/icmpshock /opt/icmpshock git clone https://github.com/cheetz/brutescrape /opt/brutescrape git clone https://www.github.com/cheetz/reddit_xss /opt/reddit_xss
THANKS