Tenable Security Center API: Solutions
/solutions
Methods
Process a query for Solutions.
NOTE: For notes on the query object, see parameters for /query::POST.
Request Parameters
Expand
1 2 | {
"query" : <query object>}
|
Example Response
Expand
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
"type" : "regular" ,
"response" : {
"totalRecords" : "50" ,
"returnedRecords" : 50,
"startOffset" : "0" ,
"endOffset" : "50" ,
"results" : [
{
"pluginID" : "94017" ,
"solution" : "Apply MS16-120: Security Update for Microsoft Graphics Component (3192884)" ,
"total" : "13" ,
"totalPctg" : "0.37%" ,
"hostTotal" : "12" ,
"vprScore" : "0.0" ,
"cvssV3BaseScore" : "10" }
]
}
"error_code" : 0,
"error_msg" : "" ,
"warnings" : [],
"timestamp" : 1546642280
}
|
/solutions/{pluginID}
Methods
Process a query for Solutions associated with {pluginID}.
NOTE: For notes on the query object, see parameters for /query::POST.
Request Paramaters
Expand
1 2 | {
"query" : <query object>}
|
Example Response
Expand
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | {
"type" : "regular" ,
"response" : {
{
"results" : {
"solution" : "Apply MS16-120: Security Update for Microsoft Graphics Component (3192884)" ,
"cveTotal" : 3,
"total" : "13" ,
"hostTotal" : "12" ,
"vprScore" : "0.0" ,
"cvssV3BaseScore" : "10" }
}
},
"error_code" : 0,
"error_msg" : "" ,
"warnings" : [],
"timestamp" : 1546642280
}
|
/solutions/{pluginID}/vuln
Process a query for Solutions that collects vulnerabilities associated with {pluginID}.
NOTE : For notes on the query object, see parameters for /query::POST.
Request Parameters
Expand
1 2 | {
"query" : <query object>}
|
Example Response
Expand
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {
"type" : "regular" ,
"response" : {
{
"results" : {
"pluginID" : "49950" ,
"pluginName" : "MS10-073: Vulnerabilities in Windows Kernel-Mode Drivers Could Allow Elevation of Privilege (981957)" ,
"cvssV3BaseScore" : "7.2" ,
"hostTotal" : "2" ,
"vprScore" : "7.4" }
}
},
"error_code" : 0,
"error_msg" : "" ,
"warnings" : [],
"timestamp" : 1546642280
}
|
/solutions/{pluginID}/asset
Process a query for Solutions that collects assets associated with {pluginID}.
NOTE : For notes on the query object, see parameters for /query::POST.
Request Parameters
Expand
1 2 | {
"query" : <query object>}
|
Example Response
Expand
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
"type" : "regular" ,
"response" : {
{
"results" : {
"ip" : "xx.xx.xx.xx" ,
"netbiosName" : "TARGET\\SQL2016" ,
"macAddres" : "" ,
"dnsName" : "" ,
"osCPE" : "cpe:/o:microsoft:windows_server_2016" ,
"repository" : {
"id" : "1" ,
"name" : "Repo" ,
"description" : "" ,
"dataFormat" : "IPv4" }
}
}
},
"error_code" : 0,
"error_msg" : "" ,
"warnings" : [],
"timestamp" : 1546642280
}
|