Bulk IP Reputation Check
https://mxtoolbox.com/restapi.aspx
More on reddit.comBulk IP Address reputation lookup tool needed
Bulk review of IP reputation
why dont you just pull in the tor exit nodes list?
curl https://check.torproject.org/exit-addresses | grep ExitAddress | cut -d' ' -f2 > /var/www/html/blocklists/tor_nodes.txt
You could just regex the list if you want with a few lines of python if you absolutely must search by line.
More on reddit.comObtain Reputation for Multiple IPs at Once
I have 1024 addresses I'd like to check for reputation. Is there a bulk way of checking them? I've got some python knowledge if I need to do something with that.
https://mxtoolbox.com/restapi.aspx
Are you looking to check these "manually" yourself, or are you looking for a way to automatically check the reputation of an IP then add it to a block list on a router/firewall? Either way, there are a number published IP block list. Many of these are in plain text served over HTTP. So, it shouldn't be too difficult to write a script that fetches a block list(s) and search it for your IP addresses.