A penetration tester wants to use a Bash script to automate…
A penetration tester wants to use a Bash script to automate the extraction of an Administrato LM/NTLM hash from a dump file during a pentest. The script is intended to search for the lin “Administrator” in a hash dump file and extract the relevant hash information: #!/bin/bash echo “Pulling Admin password hash from dump file…” grep “Administrator” /root/dumps/winserv_hash_dump.txt | cut -d “:” -f3-4 > adm echo “Admin LM/NTLM hash extracted!” Which of the following best describes what this script does?