Query Details
id: f6a7b8c9-d0e1-4f2a-3b4c-5d6e7f809112
name: EasyVista - Assets with Expired Warranty Linked to Incidents
description: |
Hunts for assets that have expired warranties and have been involved in security incidents.
These assets may lack vendor support for patching and represent increased risk.
requiredDataConnectors:
- connectorId: EasyVistaITSM
dataTypes:
- EasyVista_Assets_CL
- EasyVista_Tickets_CL
tactics:
- Persistence
relevantTechniques:
- T1190
query: |
EasyVista_Assets_CL
| where TimeGenerated > ago(30d)
| where isnotempty(END_OF_WARANTY) and END_OF_WARANTY < now()
| join kind=inner (
EasyVista_Tickets_CL
| where TimeGenerated > ago(30d)
| where REQUEST_TYPE has_any ("Incident", "I")
| summarize IncidentCount = count(), LastIncident = max(SUBMIT_DATE_UT), Tickets = make_set(RFC_NUMBER, 5) by ASSET_TAG
) on ASSET_TAG
| project ASSET_TAG, ASSET_LABEL, SERIAL_NUMBER, END_OF_WARANTY, EMPLOYEE_NAME, DEPARTMENT_PATH, LOCATION_PATH, IncidentCount, LastIncident, Tickets
| sort by IncidentCount desc
This query is designed to identify assets with expired warranties that have been involved in security incidents within the last 30 days. Here's a simplified breakdown:
Data Sources: The query uses data from EasyVista IT Service Management (ITSM), specifically focusing on asset and ticket information.
Purpose: It aims to find assets whose warranties have expired and have been linked to security incidents. These assets might not receive vendor support for updates, increasing their risk.
Process:
Security Context: The query is related to the "Persistence" tactic and technique T1190, which involves exploiting vulnerabilities to maintain access to systems.

David Alonso
Released: April 16, 2026
Tables
Keywords
Operators