The following was sent to musket teams issue 675 in WPS Reaver
Start Message
Aug 15, 2015 #
[email protected]
a trick to create monX with the latest airmon-ng is to use the command:
iw wlan0 interface add mon0 type monitor
iw wlan0 interface add mon1 type monitor
iw wlan0 interface add mon2 type monitor
...
End Message
With this approach you can make as many virtual monitors as you wish. We are hoping the author of ReVdk3-r2 reads this as MTeams would like to see this script available for kali2.0
Here is how we do it:
iw wlan0 interface add mon0 type monitor
iw wlan0 interface add mon1 type monitor
iw wlan0 interface add mon2 type monitor
You will have:
wlan0
mon0
mon1
mon2
# Run thru airmon-ng
airmon-ng start mon0
# Now you will have
mon0mon
wlan0
# To avoid network-manager conflict
ifconfig mon0mon down
iwconfig mon0mon mode monitor
#Add mac spoofing routine here
ifconfig mon0mon up
You now have:
wlan0
mon0mon
mon1
mon2
# Do the same commands for mon1 and mon2 You will have:
mon0mon
mon1mon
mon2mon
# To remove
iw mon0mon del
iw mon1mon del
iw mon2mon del
# You now have
wlan0
# End
Your network-manager is in tact
A big thanks to
[email protected] in WPS reaver forums
Musket Teams