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!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...