Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Script no scanning #39

Open
Rafalbala opened this issue Mar 4, 2022 · 4 comments
Open

Script no scanning #39

Rafalbala opened this issue Mar 4, 2022 · 4 comments

Comments

@Rafalbala
Copy link

I have Alfa AWUS036ACH-C however, it does not scan the network

2022-03-04_16h01_27

@Retr0Kr0dy
Copy link

Which version of the wifi_dos script are you using ?

This problem occurs only with the version 1 and version 2, use version 3 instead.

I think the main difference is in the way subprocess are handled.

for exemple ;

version 2 (line 196-199) :

# Deauthenticate clients using a subprocess. 
# The script is the parent process and creates a child process which runs the system command, 
# and will only continue once the child process has completed.
try:
    subprocess.run(["aireplay-ng", "--deauth", "0", "-a", hackbssid, hacknic])
except KeyboardInterrupt:
    print("Done!")

version 3 (line 183-184) :

# Deauthenticate clients. We run it with Popen and we send the output to subprocess.DEVNULL and the errors to subprocess.DEVNULL. We will thus run deauthenticate in the background.
subprocess.Popen(["aireplay-ng", "--deauth", "0", "-a", hackbssid, check_wifi_result[int(wifi_interface_choice)] + "mon"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) 

@stickyfingers82
Copy link

Thanks for the info! This was very helpful. :)

@lordmonkey1800
Copy link

yo can someone please help me with this i tried all the python scripts and none of them work please help it does not scan

@Gamer2845
Copy link

So can someone give me the name of the script that works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants