JohnNet

Server
  1. minimum password length to start
  2. maximum password length
  3. the charset to create passwords
  4. number of passwords in a working packet for a client. This value should be chosen wisely. A to small value would slow down the Process, while a to big one will occur in waiting for half an hour before you see anything. It depends on the number of hashes.
    Time for a packet:= unknownSalts * packetsize / Speed (of one pc)
    example:
    • 7 Salts, packet size 1.000.000, Speed 250.000 c/s
    • 7 * 1.000.000 / 250.000= 28 seconds
    • better:10.000.000 time: 280 seconds (about 5 minutes)
  5. the port, the server is listening on
  6. starts the server
  7. Status of the whole job
  8. Status of the current wordlength / display wordlength
  9. choose your hash-file
  10. the found passwords will appear here
Client
  1. IP or hostname of the server
  2. port of the server
  3. cnnect to the server
  4. makes a break after the current packet to be able to work again
  5. quits the client after the current packet
  6. Status of the whole job
  7. Status of the current wordlength / display wordlength
  8. Status of john at the current packet
  9. the found passwords will appear here

Have fun,
kraeh!