hashcat Forum
Use rules on dicrionary - 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: Use rules on dicrionary (/thread-6645.html)

Pages: 1 2


RE: Use rules on dicrionary - xsoft - 06-16-2017

Simple test:
Code:
!/bin/bash

echo "abc1" > testing.txt
echo "abc2" >> testing.txt
echo "abc3" >> testing.txt

cat testing.txt
echo "cat complete" # this WILL pass

hashcat -V
hashcat --stdout testing.txt
echo "hashcat complete" #it will NOT go there

will result:
Code:
# ./testing.sh
abc1
abc2
abc3
cat complete
v3.5.0
abc1
abc2
abc3