Skip to content
Extraits de code Groupes Projets
Valider 3efecc7d rédigé par Thomas Saquet's avatar Thomas Saquet
Parcourir les fichiers

Merge branch '23-wifi-cracking-tool-is-not-ready-for-the-next-version' into 'master'

Resolve "wifi cracking tool is not ready for the next version"

Closes #23

See merge request !27
parents 040f79c2 092c01ff
Aucune branche associée trouvée
Aucune étiquette associée trouvée
1 requête de fusion!27Resolve "wifi cracking tool is not ready for the next version"
......@@ -85,14 +85,20 @@ network = networks[imports.utils.Choice(choice, "a wifi network")]
bssid = network[0]
required = network[1]
if required < 0 then required ="*UNKNOWN*"
essid = network[2]
print("Once <color=white>"+required+"</color> ACKs have been generated, do Ctrl+C")
// Nightly support
if cryptools.hasIndex("aireplay") then
cryptools.aireplay(bssid,essid)
if required < 0 then
print("Please enter the number of ACKs you want to generate")
required = user_prompt().to_int
if typeof(required) == "string" or required < 0 then exit("Error: invalid number")
end if
print("Generating <color=white>"+required+"</color> ACKs, please wait")
cryptools.aireplay(bssid,essid,required)
else
if required < 0 then required ="*UNKNOWN*"
print("Once <color=white>"+required+"</color> ACKs have been generated, do Ctrl+C")
args = "-b "+bssid+" -e "+essid
result = get_shell.launch(path, args)
if not result then
......@@ -112,7 +118,7 @@ cryptools.airmon("stop", device)
path = home_dir+"/file.cap"
file = comp.File(path)
if not file then import.utils.Exit("Couldn't find file, expected "+path)
if not file then imports.utils.Exit("Couldn't find file, expected "+path)
password = cryptools.aircrack(home_dir+"/file.cap")
if not comp.connect_wifi(device, bssid, essid, password) then imports.utils.Exit("Couldn't connect !?")
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter