Help to split list into 2 files USER:PASS - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: Beta Tester (https://hashcat.net/forum/forum-31.html) +--- Thread: Help to split list into 2 files USER:PASS (/thread-9752.html) |
Help to split list into 2 files USER:PASS - nielsenjens463 - 01-08-2021 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 RE: Help to split list into 2 files USER:PASS - nielsenjens463 - 01-08-2021 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 |