Splunk Search

How do I filter tenable scan results by lastSeen value?

lball
Explorer

I'm trying to filter my Tenable results to show only vulnerabilities seen within the last 7 days. Here is my current search:

index=tenable (riskFactor=Critical OR riskFactor=High OR riskFactor=Medium OR riskFactor=Low) earliest=-2d 
| where lastSeen < relative_time(now(),"-7d")
| eval LastSeen=strftime(lastSeen,"%Y-%m-%d")
| stats count by ip,riskFactor,pluginName,dnsName,solution,scan_result_info.name,LastSeen 
| stats list(pluginName) list(solution) list(LastSeen) list(riskFactor) list(count) sum(count) by scan_result_info.name,ip,dnsName 
| sort -sum(count)

If I remove the

| where lastSeen < relative_time(now(),"-7d")

then I get results. By default the lastSeen values are in epoch time format.

0 Karma
1 Solution

somesoni2
Revered Legend

If you're looking for vulnerabilities received within last 7 days, shouldn't your where clause be | where lastSeen >= relative_time(now(),"-7d")??

View solution in original post

0 Karma

somesoni2
Revered Legend

If you're looking for vulnerabilities received within last 7 days, shouldn't your where clause be | where lastSeen >= relative_time(now(),"-7d")??

0 Karma

lball
Explorer

That did the trick! Thank you!

0 Karma

somesoni2
Revered Legend

Great. Don't forget to close the question for accepting this as an answer. This will help any splunker with similar problem to know that the solution worked.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...