hashcat Forum
Hashcat two separators - Other Questions - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Misc (https://hashcat.net/forum/forum-15.html)
+--- Forum: General Talk (https://hashcat.net/forum/forum-33.html)
+--- Thread: Hashcat two separators - Other Questions (/thread-5561.html)



Hashcat two separators - Other Questions - tiren1337 - 06-29-2016

Hello,

Is there any way to import UserID:Email:Hash in hashcat without removing user id? Because that file is huge it will take time... Also would it go any faster if i crack just hashes, not email:hash? And today i bought GTX 1080 and i was going to crack IPB (2811) and it was going pretty slow. Did i done something wrong? I'm using command


cudahashcat64.exe -a 0 -m 2811 --username HashedFIle.txt -o output.txt D:\Passwords

Should i use add something more? I was hoping it will go way faster, my friend with TITAN X have it unhashing fast as hell Tongue


RE: Hashcat two separators - Other Questions - royce - 11-19-2017

Looks like there's more than one question here.

A) You'll have to trim out the email, or replace the first colon with a different character (so that hashcat will treat the entire string as the "username"

B) Post an error and we can help troubleshoot further.


RE: Hashcat two separators - Other Questions - atom - 11-20-2017

There's are difference between your card and the Titan X, but it's no so much. The things that really creates a difference is the number of unique salts. That means if you compare the GPU, you also need to use the same hashlist with the same number of hashes in it.


RE: Hashcat two separators - Other Questions - evilmog - 11-24-2017

(06-29-2016, 09:52 PM)tiren1337 Wrote: Hello,

Is there any way to import UserID:Email:Hash in hashcat without removing user id? Because that file is huge it will take time... Also would it go any faster if i crack just hashes, not email:hash? And today i bought GTX 1080 and i was going to crack IPB (2811) and it was going pretty slow. Did i done something wrong? I'm using command


cudahashcat64.exe -a 0 -m 2811 --username HashedFIle.txt -o output.txt D:\Passwords

Should i use add something more? I was hoping it will go way faster, my friend with TITAN X have it unhashing fast as hell Tongue

something like this:

cut -d: -f1,3- < hashfile > hashfile.out
then run hashcat --username -m blah [insert rest of command line here] hashfile.out