Closed GoogleCodeExporter closed 8 years ago
I also have the exact same issue. walsh starts up, shows the list headline
("BSSID, Channel, WPS Version", etc.) and just sits there indefinitely.
This goes for both a USB device (with an RTL8187L chip) and the internal PCI
card in my laptop (Intel 5100 AGN).
All other utilities (the aircrack-ng suite and reaver itself) work as expected.
Original comment by vidar...@gmail.com
on 9 Jan 2012 at 12:40
A small update:
Removing the "else" from line 353 in wpsmon.c (current SVN version; r78) makes
walsh at least list the APs as they are being discovered. (The logic behind all
the "if"s and return values in that part escapes me right now.)
Original comment by vidar...@gmail.com
on 9 Jan 2012 at 1:06
Ugh, I meant line 338 in wpsmon.c:
@@ -335,7 +336,7 @@
{
update(bssid, ssid, wps, encryption);
}
- else if(wps->version > 0)
+ if(wps->version > 0)
{
switch(wps->locked)
{
Original comment by vidar...@gmail.com
on 9 Jan 2012 at 1:08
The problem with removing the 'else' there is that APs will be listed multiple
times. The real problem is with the database that walsh is using. This is a
known problem, work is in progress.
Original comment by cheff...@tacnetsol.com
on 9 Jan 2012 at 3:50
Have you guys tried the latest SVN and have you done a 'make install'?
Original comment by cheff...@tacnetsol.com
on 9 Jan 2012 at 6:42
Looks like you are having the same problem as reported in issue 73, merging.
Original comment by cheff...@tacnetsol.com
on 9 Jan 2012 at 8:42
Original issue reported on code.google.com by
djme...@slash32.com
on 8 Jan 2012 at 11:18