Skip to content

Instantly share code, notes, and snippets.

@gprudhomme-x
gprudhomme-x / crack-lm-ntlm.sh
Created March 4, 2021 18:46 — forked from jesux/crack-lm-ntlm.sh
Hashcat Script to Crack LM + NTLM hashes
#/bin/bash
session=ntlmscript
if [ -z "$1" ]; then
echo "No hashfile supplied"
exit
fi
hashfile=$1
if [ ! -f $hashfile ]; then
echo "[ERROR] File not exists."