diff --git a/jupiterone/questions/questions.yaml b/jupiterone/questions/questions.yaml index d1efa59..94a3830 100644 --- a/jupiterone/questions/questions.yaml +++ b/jupiterone/questions/questions.yaml @@ -92,3 +92,22 @@ questions: - container - image - tenable + +- id: managed-question-which-tenable-assets-were-last-scanned + title: What are the latest Tenable asset scans? + description: + Return a list of the latest Tenable asset scans. + queries: + - name: Latest Tenable Asset Scans + resultsAre: INFORMATIVE + query: | + FIND tenable_asset THAT IS tenable_asset AS last + RETURN + last.displayName AS "Display Name", last.agentUuid AS "Agent Uuid", + last.lastAuthenticatedScanDate AS "Last Authenticated Scan Date", + last.lastLicensedScanDate AS "Last Licensed Scan Date", + last.lastScanId AS "Last Scan ID", last.lastScanTime AS "Last ScanTime", + last.lastScheduleId AS "Last Scheduled" + tags: + - assets + - tenable \ No newline at end of file