Skip to content
This repository has been archived by the owner on Apr 25, 2019. It is now read-only.

Commit

Permalink
Merge pull request #250 from thel3l/master
Browse files Browse the repository at this point in the history
Fixes #249
  • Loading branch information
binkybear committed Sep 27, 2015
2 parents f1b3c51 + ddbc334 commit c1de8f0
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions menu/kalimenu
Expand Up @@ -44,7 +44,7 @@ case $menuchoice in
14) clear; f_mon;;
15) clear; f_safeeject;;
q) clear; exit 1 ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_interface;;
esac
}

Expand Down Expand Up @@ -75,7 +75,7 @@ case $wirelesschoice in
5) clear; trap 'f_wireless_attacks' 2 ;f_monitor_check; airodump-ng mon0;;
6) clear; trap 'f_wireless_attacks' 2 ;f_pingen;;
0) clear; f_interface;;
*) echo "Incorrect choice...";
*) clear; echo "Invalid option. Please try again."; sleep 2; f_wireless_attacks;;
esac
}

Expand Down Expand Up @@ -261,7 +261,7 @@ case $sniffchoice in
4) clear; trap 'f_sniffing' 2; f_dsniff ;;
5) clear; trap 'f_sniffing' 2; f_mitmproxy ;;
0) clear; f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_sniffing;;
esac
}

Expand Down Expand Up @@ -334,7 +334,7 @@ case $infochoice in
2) clear; recon-ng; f_information_gathering;;
3) clear; f_device_pharmer ;;
0) clear; f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_information_gathering;;
esac
}

Expand Down Expand Up @@ -415,7 +415,7 @@ case $vulnchoice in
2) clear; openvas-stop; f_vulnerability ;;
3) clear; openvas-feedupdate; f_vulnerability ;;
0) f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_vulnerability;;
esac
}
########################## EXPLOITATION MENU ############################
Expand All @@ -440,7 +440,7 @@ case $webchoice in
3) clear; setoolkit ; f_exploitation ;;
4) clear; trap 'f_exploitation' 2; f_mitmf ;;
0) clear; f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_exploitation;;
esac
}

Expand Down Expand Up @@ -498,7 +498,7 @@ case $serviceschoice in
4) clear; echo "Attempting to shutdown ptunnel" ; kill -KILL $(cat /opt/ptunnel.pid) ; sleep 5 ;;
#5) clear; f_iodine ;;
0) f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_reverse;;
esac
}

Expand Down Expand Up @@ -655,7 +655,7 @@ case $serviceschoice in
6) clear; service openvpn stop ; iptables -F ; iptables -X ; echo "Stopping Openvpn" ;;
7) clear; DISPLAY=127.0.0.1:0.0 startxfce4; echo "Server started on localhost to be used with Xserver XSDL application" ;;
0) f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_services;;
esac
}

Expand Down Expand Up @@ -743,7 +743,7 @@ case $vpnkeychoice in
2) f_domain_clientkey ;;
3) f_exportkeys ;;
0) f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_vpnmenu;;
esac
}

Expand Down Expand Up @@ -888,7 +888,7 @@ case $vncsettingschoice in
1) clear; echo "Change your VNC password:"; vncpasswd; f_vncmenu ;;
2) clear; f_vncres ;;
0) f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_vncmenu;;
esac
}

Expand Down Expand Up @@ -950,7 +950,7 @@ case $logchoice in
1) clear; f_sync_cap ;;
2) clear; f_wipe_cap ;;
0) f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_capture;;
esac
}

Expand Down Expand Up @@ -1220,7 +1220,7 @@ case $settingschoice in
3) clear; f_macchanger ;;
4) clear; f_nodejs ;;
0) f_interface ;;
*) echo "Incorrect choice..." ;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_settings;;
esac
}

Expand Down Expand Up @@ -1300,7 +1300,7 @@ case $sniffinterface in
4) clear; pickinterface=eth0 ;;
5) clear; pickinterface=rndis0 ;;
6) clear; pickinterface=usb0 ;;
*) echo "Incorrect choice..." ;;
*) clear; echo "Invalid option. Please try again."; sleep 2; f_pick_interface;;
esac
}
# **** START **** #
Expand Down

0 comments on commit c1de8f0

Please sign in to comment.