davidbombal / red-python-scripts

MIT License
2.04k stars 1.59k forks source link

Only 1 Wifi Interface #37

Open linuxchuck1 opened 2 years ago

linuxchuck1 commented 2 years ago

Its only show wlan0 while i have connected my wifi adapter wlan1 but it doesn't show...

Retr0Kr0dy commented 2 years ago

I found this, not sure if it's the good fix but it's a fix anyway.

You got to modify the wlan_pattern regular expression.

version 1 line 80 ; version 2 line 79 ; version 3 line 81 ;

change

wlan_pattern = re.compile("^wlan[0-9]+")

to

wlan_pattern = re.compile("wlan[0-9]")
stickyfingers82 commented 2 years ago

I was having the same issue and this worked perfectly! Thanks :)

bdstecnosystem commented 1 year ago

can't get out of monitor mode