Teknogeek ®

!Stuff!

Archive for the ‘Linux Commands’ Category

oclHashcat —

oclHashcat How To: Website: http://hashcat.net/oclhashcat/ oclHashcat needs .cap files to be converted to .hccap before it can start the password recovery process. Aircrack-ng suite will output files in .cap with all captures SSIDs found in the scan. So we first want to run wpaclean which will reduce the file to just the 4 way handshakes found […]

Whitelist / Blacklist —

Whitelist or Blacklist domains or E-Mail addresses in SpamAssassin:   Navigate to the SpamAssassin directory Nano /etc/spamassassin/local.cf Comment out a section for whitelisting and do the same for blacklisting #Whitelist whitelist_from *@domain.com whitelist_from user@domain.com #Blacklist blacklist_from *@domain.com blacklist_from user@domain.com  

E-Mail from CMD —

MAIL: E-Mail from command line using Echo and Mail:   echo “Testing E-Mail from command line” | mail -s “Test Echo CMD E-Mail” someone@domain.com   MUTT: E-Mail with Attachment: echo “This is the message body” | mutt -a “/path/to/file.to.attach” -s “subject of message” — recipient@domain.com