0
(0)

This example describes how to export all system scan findings from the latest scans.

    1. Get a list of scan groups within the current organization:

curl -X GET https://api.radar.f-secure.com/api/integration/scangroups/simple
-H ‘Content-Type: application/json’
-H ‘ApiAccessKey: {ApiAccessKey}’
-H ‘ApiSecretKey: {ApiSecretKey}’

    1. Extract the unique Id identifier from each of the returned scan groups.
    2. Get a list of system scans assigned to each scan group:

Use the previously extracted scan group Id as a parameter.

curl -X GET https://api.radar.f-secure.com/api/integration/scangroups/{scanGroupId}/systemscans
-H ‘Content-Type: application/json’
-H ‘ApiAccessKey: {ApiAccessKey}’
-H ‘ApiSecretKey: {ApiSecretKey}’

    1. Extract the Id from each of the returned system scans.
    2. Get a list of findings:

Use the previously extracted system scan Id as a parameter.

curl -X POST https://api.radar.f-secure.com/api/integration/systemscans/{scanId}\
/reports/latest/vulnerabilitiesandfindings/withstartindex/0/andpagesize/1000
-H ‘Content-Type: application/json’
-H ‘ApiAccessKey: {ApiAccessKey}’
-H ‘ApiSecretKey: {ApiSecretKey}’
-d ”

  1. Extract the required data such as Title or RiskLevel from each of the returned findings.

Source : Official F-Secure Brand
Editor by : BEST Antivirus KBS Team

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

(Visited 20 times, 1 visits today)