Sinisterly
Wifijammer in python - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools)
+--- Thread: Wifijammer in python (/Thread-Wifijammer-in-python)

Pages: 1 2


RE: Wifijammer in python - Seven - 08-29-2014

Just ran a test. You cant get the deauth packets to send through a wired connection. But they are other ways of knocking of a wired user.


RE: Wifijammer in python - Eclipse - 08-29-2014

(08-29-2014, 07:23 PM)APPLEZ Wrote: Yeah... it would suck if everyone had to plug ethernet cables into their computers/phones just to connect to the internet...

Not sure if being sarcastic. For the school computers, Ethernet would be an advantage. For laptops and mobiles etc, WiFi is better.

(08-29-2014, 07:28 PM)six7 Wrote: Just ran a test. You cant get the deauth packets to send through a wired connection. But they are other ways of knocking of a wired user.

What are you talking about? o.O

There's also;

Code:
flood_router6 -F eth0

But it's older.


RE: Wifijammer in python - Seven - 08-29-2014

(08-29-2014, 08:52 PM)Eclipse Wrote: Not sure if being sarcastic. For the school computers, Ethernet would be an advantage. For laptops and mobiles etc, WiFi is better.


What are you talking about? o.O

There's also;

Code:
flood_router6 -F eth0

But it's older.

I was just saying that that the script wont deauth wired users but you can knock of wired users with other methods.


RE: Wifijammer in python - Eclipse - 08-29-2014

(08-29-2014, 09:00 PM)six7 Wrote: I was just saying that that the script wont deauth wired users but you can knock of wired users with other methods.

The script that I mentioned or your script? Mine most definitely does.


RE: Wifijammer in python - Seven - 08-29-2014

(08-29-2014, 09:11 PM)Eclipse Wrote: The script that I mentioned or your script? Mine most definitely does.

My script dose not. Your does.


RE: Wifijammer in python - Eclipse - 08-30-2014

(08-29-2014, 09:20 PM)Seven Wrote: My script dose not. Your does.

Yeah, your script automatically uses the wlan0 interface as deauth packets only work for Wlan. If I'm not mistaken, this feature was built into aircrack. Someone correct me on this.


RE: Wifijammer in python - Seven - 08-30-2014

(08-30-2014, 06:36 AM)Eclipse Wrote: Yeah, your script automatically uses the wlan0 interface as deauth packets only work for Wlan. If I'm not mistaken, this feature was built into aircrack. Someone correct me on this.
Question. Do you know why the script searches for a wired interface in this line:

Code:
wired_search = re.search('eth[0-9]|em[0-9]|p[1-9]p[1-9]', line) if not wired_search: # Isn't wired

Not sure why.


RE: Wifijammer in python - Eclipse - 08-30-2014

(08-30-2014, 07:09 AM)Seven Wrote: Question. Do you know why the script searches for a wired interface in this line:

Code:
wired_search = re.search('eth[0-9]|em[0-9]|p[1-9]p[1-9]', line) if not wired_search: # Isn't wired

Not sure why.

I assume it's searching interfaces.

Code:
'eth[0-9]|em[0-9]|p[1-9]p[1-9]'

^This is a regex string and it's being searched for in line.

Try running the script on a ethernet network but doing " -i eth0 " (Or your wired interface)


RE: Wifijammer in python - Seven - 08-30-2014

(08-30-2014, 07:20 AM)Eclipse Wrote: I assume it's searching interfaces.

Code:
'eth[0-9]|em[0-9]|p[1-9]p[1-9]'

^This is a regex string and it's being searched for in line.

Try running the script on a ethernet network but doing " -i eth0 " (Or your wired interface)

I see thank you.