Wrong stdout output for combination method (-w 4) - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-40.html) +--- Thread: Wrong stdout output for combination method (-w 4) (/thread-10575.html) |
Wrong stdout output for combination method (-w 4) - Dr-Tibetor - 01-12-2022 Hashcat.exe -D 1 --stdout -w 4 -j "c" -k "u" "first.txt" "second.txt" output only first file without combination RE: Wrong stdout output for combination method (-w 4) - Snoopy - 01-13-2022 you have to specify attackmode combinator -a 1 otherwise hashcat will turn auto to -a 0 and these attack only supports ONE input file, so your second file second.txt and your rule -k "u" is ignored btw: you can remove -w 4, this option is for workload and --stdout doesnt really produce "work" RE: Wrong stdout output for combination method (-w 4) - Dr-Tibetor - 01-13-2022 🤦🏻 Thank you. |