Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Tenable Assets Latest Scans #189

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions jupiterone/questions/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 UNIQUE tenable_asset THAT IS tenable_asset AS last
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks odd to me. FIND UNIQUE tenable_asset THAT IS tenable_asset?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please specify the oddity as it relates to the IS relationship that designates that a tenable asset can assess a tenable asset?
Or is it something else?

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