Security
The Security endpoint provides methods for viewing various security related metrics over time, such as your risk score.
Display your current risk score.
{
"request": {
"target_count": 1,
"sort": "1"
},
"risk_score": 1000
}Display trends of your risk score, target, port, and issue counts over time.
{
"request": {
"target_count": 1,
"sort": "1"
},
"days": [
{
"date": "2022-01-22",
"target_count": 0,
"issue_count": 0,
"risk_score": 0,
"port_count": 0
},
{
"date": "2022-01-23",
"target_count": 0,
"issue_count": 0,
"risk_score": 0,
"port_count": 0
},
{
"date": "2022-01-24",
"target_count": 0,
"issue_count": 0,
"risk_score": 0,
"port_count": 0
},
{
"date": "2022-04-22",
"target_count": 1,
"issue_count": 3,
"risk_score": 1000,
"port_count": 4
}
}Display a list of platforms that were detected.
Last updated