Merge pull request #13 from princeofguilty/master
added bruteforce while using web interface
This commit is contained in:
commit
e9cddc9688
|
@ -61,7 +61,7 @@ A Linux-based operating system. We recommend Kali Linux 2 or Kali 2016.1 rolling
|
|||
2. dlinkproto - contributor
|
||||
3. vk496 - developer of linset
|
||||
4. Derv82 - @Wifite/2
|
||||
5. Princeofguilty - @webpages
|
||||
5. Princeofguilty - @webpages and @buteforce
|
||||
6. Photos for wiki @http://www.kalitutorials.net
|
||||
7. Ons Ali @wallpaper
|
||||
8. PappleTec @sites
|
||||
|
|
14
fluxion.sh
14
fluxion.sh
|
@ -2101,13 +2101,15 @@ function attack {
|
|||
echo -e ""$red"["$yellow"2"$red"]"$transparent" Attack in progress .."
|
||||
echo " "
|
||||
echo " 1) Choose another network"
|
||||
echo " 2) Exit"
|
||||
echo " 2) Dictionary Bruteforce *wont stop current attack*"
|
||||
echo " 3) Exit"
|
||||
echo " "
|
||||
echo -n ' #> '
|
||||
read yn
|
||||
case $yn in
|
||||
1 ) matartodo; CSVDB=dump-01.csv; selection; break;;
|
||||
2 ) matartodo; exitmode; break;;
|
||||
2 ) Bruteforce;;
|
||||
3 ) matartodo; exitmode; break;;
|
||||
* ) echo "
|
||||
$general_case_error"; conditional_clear ;;
|
||||
esac
|
||||
|
@ -2115,6 +2117,14 @@ $general_case_error"; conditional_clear ;;
|
|||
|
||||
}
|
||||
|
||||
function Bruteforce {
|
||||
|
||||
echo "where is your Dictionary: _"
|
||||
read Dictionary0
|
||||
xterm -title "aircrack-ng $Host_MAC --by Princeofguilty" -e "aircrack-ng $DUMP_PATH/$Host_MAC-01.cap -w $Dictionary0"
|
||||
|
||||
}
|
||||
|
||||
# Checks the validity of the password
|
||||
function handshakecheck {
|
||||
|
||||
|
|
Loading…
Reference in New Issue