Regular Expressions
Basic Tricks
cat example | grep -Ev "^#" | grep .
sed 's/"\([^"]*\)"/\1/g' filename
sed -i 's/\r$//' file.sh
until ! ./poc.sh | grep -q "[x] ERROR"; do :; done; echo "No ERROR found, script finished successfully."
Making Wordlists
For example the following commands extracts the first (usernames) and fourth (password hashes) fields, which are separated by colons (:):
usernames
password hashes
:
awk '{print $1}' FS=':' dump.txt > users.txt awk '{print $4}' FS=':' dump.txt > hashes.txt
Last updated 9 days ago