hashcat and Apache SHA1?
#1
Is hashcat able to handle Apache SHA1 hashes, and if so, how? When I do this (on the the hash for 'pass'):

Code:
./cudaHashcat-plus64.bin -a 3 --force -m 100 nU4eI71bcnBGqeO0t9tXvY1u5oQ=

I just get this:

Code:
WARNING: Hash 'nU4eI71bcnBGqeO0t9tXvY1u5oQ=': Line-length exception
ERROR: No hashes loaded

The hash has been generated like this:

Code:
htpasswd -nbs username pass

http://httpd.apache.org/docs/2.2/misc/pa...tions.html

Edit: Never mind, of course I found out how to do it just after I posted this. The solution:

Code:
./cudaHashcat-plus64.bin -a 3 --force -m 101 '{SHA}nU4eI71bcnBGqeO0t9tXvY1u5oQ='
#2
Thanks! Smile