[ create a new paste ] login | about

Link: http://codepad.org/vbAPc7w6    [ raw code | fork ]

Plain Text, pasted on Dec 4:
#!/bin/bash
echo "###################################"
echo "# auto_exploiter                  #"
echo "# by: Mr_Nakup3nda                #"
echo "# contact:                        #"
echo "# null-byte.wonderhowto.com       #"
echo "#                                 #"
echo "###################################"
    
#this secction bring the menu of our tool
echo "------------------------------------------------------------"
echo "Choose the type of hack                                    |"  
echo "[1] Reconnaissance                                         |"
echo "[2] Website_hacking                                        |"
echo "[3] Wifi_hacking                                           |"
echo "[4] Email_hacking                                          |"
echo "[5] Server_hacking                                         |"                                            
echo "------------------------------------------------------------"
read type

#Reconnaissance
if [ $type -eq 1 ]; then
    echo "---------------------"
    echo "input the target ip"
    echo "---------------------"
    read recon_ip

recon_1="whatweb $recon_ip"
recon_2="dmitry -i -e $recon_ip"
recon_3="nmap -sT -Pn  $recon_ip -D 10.0.0.1,10.0.0.2,10.0.0.4"

     
      echo "Starting reconnaissance...."
    
      $recon_1
      echo "----------------------------------"
      $recon_2
      echo "----------------------------------"
      $recon_3
      echo "Done with the recon, happy hacking"


#Website_hacking
else
    if [ "$type" -eq 2 ] ; then
        echo "---------------------"
        echo "input the target ip"
        echo "---------------------"
        read web_ip
        echo "---------------------------"
        

web_hack_1="nikto -h $web_ip"
web_hack_2="golismero scan $web_ip"

        echo "hacking the website..."
        echo "you can enter ctrl+c if you want to skip this scan"
        $web_hack_1
        echo "----------------------------------"
        $web_hack_2
        echo "----------------------------------"
        echo "Done hacking the website, happy hacking"

#Wifi_hacking
#Email_hacking
#Server_hacking
fi
fi


Create a new paste based on this one


Comments: