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
Attention: This article is a record of a conversation with the Paessler support team. The information in this conversation is not updated to preserve the historical record. As a result, some of the information or recommendations in this conversation might be out of date.
Hi there,
We found an example to reach the API on the following site:
I tried to replicate this in PowerShell, but the server is not able to be connected to. Even a manual connection from a different tool only gives out the HTTP Error 502 (Bad Gateway) error.
$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 $headersMaybe 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