HoneyCredIPTracker
HoneyCredIPTracker copied to clipboard
Quick script to gather stats on incoming credentials and IPs for a honey listener.
Results
3
HoneyCredIPTracker issues
Sort by
recently updated
recently updated
newest added
It isn't needed to get the full set of details for the IP when we just need the country-code. Source: http://ipinfo.io/developers/jsonp-requests
Something like: for IP in `cat sortedips.txt | awk '{print $2}'` do domain=$(dig +short -x $IP) printf "%s : %s\n" "$IP" "$domain" done