Hello Everyone

More & more systems use the Talosintelligence (formerly SenderBase) in theire AntiSpam, so will be usefull monitor the state of the "Mail Reputation" on these Site for certain ip addresses. it's possible something like this in PRTG ?

to have an example see : https://www.talosintelligence.com/reputation_center/lookup?search=195.65.172.99


Article Comments

Hi there,

We found an example to reach the API on the following site:

$ipaddress = "195.65.172.99"

$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("user-agent","Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.31 Safari/537.36")
$headers.Add("referer","https://talosintelligence.com/reputation_center/lookup?search=$($ipaddress)")

$site = Invoke-WebRequest -uri "https://talosintelligence.com/sb_api/query_lookup" -method post -body "'query': '/api/v2/details/ip/', 'query_entry': '$($ipaddress)', 'offset': 0, 'order': 'ip asc'" -Headers $headers

Maybe you are able to utilize it further and make it work, but it does not look like that there is a native API to be requested.

Best regards.


Jul, 2018 - Permalink