Domain Name System (DNS) is the hierarchical and distributed naming system used to identify computers reachable through the Internet. These are most commonly used to map human-friendly domain names to the numerical IP addresses computers need to locate services.
Any Information
digANY@dns_ipdomain
Information
digTXT@dns_ipdomain
Tranfert Zone
digaxfr@dns_ipdomain
Reverse Lookup
dig-xip@dns_ip
Reverse All Address
dnsrecon-r127.0.0.0/24-nip_dns
SNMP
Port: 161 / 162
SNMP is used to monitor the network, detect network faults, and sometimes even used to configure remote devices.
List devices
snmp-checkip
RPCBind
The rpcbind utility maps RPC services to the ports on which they listen. RPC processes notify rpcbind when they start, registering the ports they are listening on and the RPC program numbers they expect to serve. - redhat
A Network File System (NFS) allows remote hosts to mount file systems over a network and interact with those file systems as though they are mounted locally. - redhat
from scapy.all import*scapy_cap =rdpcap('file.pcap')i =0for packet in scapy_cap:iftype(packet[TCP].payload)== scapy.packet.Raw:try:print(i, ':', packet[TCP].payload.load.decode())except:print(i, ':', packet[TCP].payload.load) i +=1