hashcat Forum

Full Version: Help to split list into 2 files USER:PASS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys,im trying to get ready to test Assosiations attack mode. Need to split my combo
as shows in thread example:

2. This is the point where you typically start. You have a hashlist in username:hash format. We need to split them in order to use them with the new attack-mode.

Code:
$ cut -d: -f1 < final.txt > wordlist.txt
$ cut -d: -f2 < final.txt > hashlist.txt 

...........................................................................................

Im using win10.

tryed hashcat cut -d: -f1 < final.txt > wordlist.txt
RESULT: hashcat cut -d: -f1 < UPWhashes.txt > wordlist.txt
hashcat: unknown option -- f
Invalid argument specified.


tryed hashcat cut -d:-f1 < final.txt > wordlist.txt  
RESULT:hashcat cut -d:-f1 < UPWhashes.txt > wordlist.txt

Invalid device_id 0 specified.




My combo list looks like this. user:bcrypt.
userplaintextnickname:$2y$10$sIgXXXxTte.v19t.QduI4mgPuC9UUxXXXXcQFvltcaqVhya

Please help novice person Smile
Have managed to work everything quite fast in note++ comands. Will leave this post - maybe someone will need info on how to if they dont manage to work it with hashcat