After trying to break my own 64bit wep key, i noticed that the key was found, however, not displayed.
Apparently this will be fixed in 0.0.7.
In the meantime, here's a quick fix:
In - bruteforce.c, around line 174 add the ViewKey Function (shown in red)
Code:
if (VerifyPacketWithKey(packets[0],key.key)){
printf("Key parece que verifica paquete. Proban$
if (Verify10PacketsWithKey(packets, key.key)>2){
printf("Key correcta!\n");
ViewKey (key.key,global_v.key_len);
}
}
Many thanks to Alon (loni) for providing this quick fix!