#make generic |
# ./john -format=des --test Benchmarking: Traditional DES [32/32 BS]... DONE Many salts: 323614 c/s real, 321629 c/s virtual Only one salt: 336061 c/s real, 336061 c/s virtual |
#make linux-x86-sse2 # ./john -format=DES --test Benchmarking: Traditional DES [128/128 BS SSE2]... DONE Many salts: 1700K c/s real, 1700K c/s virtual Only one salt: 1650K c/s real, 1634K c/s virtual |
#get mpich2 and mod
(apt-get / yum / etc) #get /etc/mpd.conf or user based con (running mod will give you instructions to do this) #start mpd with mpd -d |
## Uncomment the TWO lines
below for MPI (can be used together with OMP as well) ## If you experience problems with MPI_Barrier, remove -DJOHN_MPI_BARRIER ## If you experience problems with MPI_Abort, remove -DJOHN_MPI_ABORT #CC = mpicc -DHAVE_MPI -DJOHN_MPI_BARRIER -DJOHN_MPI_ABORT #MPIOBJ = john-mpi.o |
## Uncomment the TWO lines
below for MPI (can be used together with OMP as well) ## If you experience problems with MPI_Barrier, remove -DJOHN_MPI_BARRIER ## If you experience problems with MPI_Abort, remove -DJOHN_MPI_ABORT CC = mpicc -DHAVE_MPI -DJOHN_MPI_BARRIER -DJOHN_MPI_ABORT MPIOBJ = john-mpi.o |
#make linux-x86-sse2 |
# mpiexec -np 2 ./john
-format=DES --test Benchmarking: Traditional DES [128/128 BS SSE2]... (2xMPI) DONE Many salts: 3752K c/s real, 3869K c/s virtual Only one salt: 3100K c/s real, 3229K c/s virtual |
# time ./john --rules
--wordlist=/admin/002_dict/001_general/test.dic
/admin/001_to-crack/demo.txt Loaded 10 password hashes with 10 different salts (Traditional DES [128/128 BS SSE2]) guesses: 0 time: 0:00:00:15 DONE (Sat Sep 10 00:02:00 2011) c/s: 753414 trying: 4bodiadm - 8bodiadm real 0m15.807s user 0m15.017s sys 0m0.260s |
# time mpiexec -np 2
./john --rules --wordlist=/admin/002_dict/001_general/test.dic
/admin/001_to-crack/demo.txt Loaded 10 password hashes with 10 different salts (Traditional DES [128/128 BS SSE2]) MPI: each node loaded 1/2 of wordfile to memory (about 4693 KB/node) Node 0 finished at 0:00:00:06. Node 1 finished at 0:00:00:06. 0: guesses: 0 time: 0:00:00:06 DONE (Sat Sep 10 00:02:34 2011) c/s: 1013K trying: 08975434 - 08795745 1: guesses: 0 time: 0:00:00:06 DONE (Sat Sep 10 00:02:34 2011) c/s: 1014K trying: 089818sh - 8bodiadm real 0m6.612s user 0m0.072s sys 0m0.020s |