http403 / pyrit

Automatically exported from code.google.com/p/pyrit
0 stars 0 forks source link

Issue with cracking WPA_handshake #80

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I have compiled and tested pyrit
#1: 'CUDA-Device #1 'GeForce 9800M GTS'': 2801.2 PMKs/s (Occ. 98.8%; RTT)
#2: 'CPU-Core (SSE2)': 421.5 PMKs/s (Occ. 98.1%; RTT )
Then I tried to use pyrit against .cap file captured by airodump-ng:
First analyse it
dem@dem-laptop:~/Desktop/amaral_psk$ pyrit -r psk-01.cap analyze
 Parsing file 'psk-01.cap' (1/1)...
 75580 packets (75580 802.11-packets), 1 APs
#1: AccessPoint 00:25:86:c4:09:66 ('AMARAL2009')
#3: Station 00:25:d3:10:a2:56, handshake found

Second, supplied neccessary to crack it:

dem@dem-laptop:~/Desktop/amaral_psk$ pyrit -r psk-01.cap -b
00:25:86:c4:09:66 -f ~/Desktop/wpa-words/names.txt attack_passthrough
Traceback (most recent call last):
  File "/usr/local/bin/pyrit", line 6, in <module>
    pyrit_cli.Pyrit_CLI().initFromArgv()
  File "/usr/local/lib/python2.6/dist-packages/pyrit_cli.py", line 62, in
initFromArgv
    args, commands = getopt.getopt(sys.argv[1:], 'u:v:c:e:i:o:r:b:')
  File "/usr/lib/python2.6/getopt.py", line 91, in getopt
    opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:])
  File "/usr/lib/python2.6/getopt.py", line 191, in do_shorts
    if short_has_arg(opt, shortopts):
  File "/usr/lib/python2.6/getopt.py", line 207, in short_has_arg
    raise GetoptError('option -%s not recognized' % opt, opt)
getopt.GetoptError: option -f not recognized

Original issue reported on code.google.com by demonta...@gmail.com on 17 Dec 2009 at 8:52

GoogleCodeExporter commented 9 years ago
I guess you are using 0.2.5svn? It takes -i (Input file) and -o (Output file) 
instead
of -f now. The line should read

pyrit -r psk-01.cap -b 00:25:86:c4:09:66 -i ~/Desktop/wpa-words/names.txt
attack_passthrough

Original comment by lukas.l...@gmail.com on 17 Dec 2009 at 10:01

GoogleCodeExporter commented 9 years ago
Yes, yesterday just downloaded Pyrit 0.2.5-dev (svn r193). Sorry for this child
question, but I was confused, now I checked, no more -f option in pyrit help 
list, I
did as it was stated in wiki.

Original comment by demonta...@gmail.com on 17 Dec 2009 at 10:13