Login Register






The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
Thread Rating:
  • 0 Vote(s) - 0 Average


Wifijammer in python filter_list
Author
Message
RE: Wifijammer in python #11
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.

Reply

RE: Wifijammer in python #12
(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.
(This post was last modified: 08-29-2014, 08:54 PM by Eclipse.)

Reply

RE: Wifijammer in python #13
(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.

Reply

RE: Wifijammer in python #14
(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.

Reply

RE: Wifijammer in python #15
(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.

[+] 1 user Likes Seven's post
Reply

RE: Wifijammer in python #16
(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.

Reply

RE: Wifijammer in python #17
(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.

Reply

RE: Wifijammer in python #18
(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)

Reply

RE: Wifijammer in python #19
(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.

Reply







Users browsing this thread: 1 Guest(s)