Recon
dig $DOMAIN # Queries the DNS server for the A record for the specified domain
dig $DOMAIN MX # Queries the DNS server for mail (MX) records for the specified domain
dig $DOMAIN ANY +nocomments +noauthority +noadditional +nostats # Queries the DNS server for all DNS records for the specified domain and removes the extra information provided by dig
netstat -a # Displays all of the current connections and listening ports on the system
netstat -a -b # Displays all of the current connections and listening ports on the system, as well as their corresponding executable
netstat -s -p tcp -f # Displays the statistics for all connections using TCP and then displays them in an FQDN format
Última actualización 1yr ago