バッシュ コードをコピー $(seq 1 254) の IP の場合; do echo $(echo "192.168.15.$ip ") $(host 192.168.15.$ip dns.company.com | grep "domain name point") done | grep "domain name point" | cut -d" " -f1,6 このスクリプトの目的を最もよく説明しているのは次のどれですか?
正解:A
The script queries DNS records for hostnames corresponding to IP addresses in the 192.168.15.0/24 subnet. It uses host to resolve domain names and extracts relevant results, aligning with CompTIA Pentest+ objectives on information gathering and network enumeration.