Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: Use rules on dicrionary
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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
Pages: 1 2