Command line with basic prompt and pretty colors. The "host" command is run to query the mail exchange for whitehouse.gov, which has no record. The same command is run to get the A and AAAA records, which are then scanned with nmap checking port 25. The IPv4 address has port 25 closed while the IPv6 address has it filtered. The exact commands follow. If your speech-to-text can't handle this, interrupt it knowing you've already got the meat above. $ host -t mx whitehouse.gov whitehouse.gov has no MX record $ host whitehouse.gov whitehouse.gov has address 192.0.66.51 whitehouse.gov has IPv6 address 2a04:fa87:fffd::c000:42b7 $ nmap -p25 192.0.66.51 Starting Nmap 7.95 ( https://nmap.org ) at 2025-01-22 13:13 EST Nmap scan report for 192.0.66.51 Host is up (0.070s latency). PORT STATE SERVICE 25/tcp filtered smtp Nmap done: 1 IP address (1 host up) scanned in 0.30 seconds $ nmap -6 -p25 2a04:fa87:fffd::c000:42b7 Starting Nmap 7.95 ( https://nmap.org ) at 2025-01-22 13:14 EST Nmap scan report for 2a04:fa87:fffd::c000:42b7 Host is up (0.019s latency). PORT STATE SERVICE 25/tcp filtered smtp Nmap done: 1 IP address (1 host up) scanned in 0.25 seconds
https://media.infosec.exchange/infosec.exchange/media_attachments/files/113/873/453/317/029/607/original/0fe10efe680076a4.png