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
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.
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