IVS - Identification & Vulnerability Scanning¶
View IVS module KPIs, assets, and threats.
Commands¶
- ivs kpis - View IVS general KPIs
- ivs years - List available IVS data years
- ivs year-kpis - View IVS KPIs for a specific year
- ivs assets - List IVS assets
- ivs threats - List IVS threats
ivs kpis¶
Display IVS general KPIs including identified threats, severity breakdown, and asset counts.
1 | |
Flags¶
| Flag | Type | Default | Description |
|---|---|---|---|
--last-n-days |
int | 30 |
Number of days for KPI calculation |
API¶
1 | |
Request Example¶
1 | |
1 2 3 | |
Response¶
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
Model: IVSGeneralKPIs¶
| Field | Type | Description |
|---|---|---|
unsolved_identified_threats |
number | Threats still open (number or string) |
total_identified_threats |
number | Total identified threats (number or string) |
critical_threats |
int | Critical severity count |
high_threats |
int | High severity count |
medium_threats |
int | Medium severity count |
low_threats |
int | Low severity count |
identified_assets |
int | Total identified assets |
ip_addresses |
int | IP address count |
web_applications |
int | Web application count |
software |
int | Software count |
operating_systems |
int | Operating system count |
ivs years¶
List years that have IVS data.
1 | |
API¶
1 | |
Response¶
1 2 3 4 5 | |
Model: IVSYearsResponse¶
| Field | Type | Description |
|---|---|---|
data.items |
[]int | Available years |
ivs year-kpis¶
View per-severity monthly KPI series for a specific year.
1 | |
Flags¶
| Flag | Type | Required | Description |
|---|---|---|---|
--year |
int | Yes | Year for KPI data |
API¶
1 | |
Request Example¶
1 | |
1 2 3 | |
Response¶
1 2 3 4 5 6 | |
Model: IVSYearKPIs¶
| Field | Type | Description |
|---|---|---|
critical |
[]int | Monthly critical counts (Jan-Dec) |
high |
[]int | Monthly high counts (Jan-Dec) |
medium |
[]int | Monthly medium counts (Jan-Dec) |
low |
[]int | Monthly low counts (Jan-Dec) |
ivs assets¶
List IVS assets with their threat counts.
1 | |
Flags¶
| Flag | Type | Default | Description |
|---|---|---|---|
--limit |
int | 20 |
Number of results |
--offset |
int | 0 |
Result offset |
--search |
string | Search query |
API¶
1 | |
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
limit |
int | Max results |
offset |
int | Skip results |
search |
string | Search query |
Request Example¶
1 | |
1 2 3 | |
Response¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
Model: IVSAssetEntry¶
| Field | Type | Description |
|---|---|---|
id |
string | Asset ID |
name |
string | Asset name |
type |
string | Asset type |
threats |
IVSAssetThreat | Threat counts for the asset |
Model: IVSAssetThreat¶
| Field | Type | Description |
|---|---|---|
solved |
int | Solved threats |
total |
int | Total threats |
ivs threats¶
List IVS threats with risk scoring.
1 | |
Flags¶
| Flag | Type | Default | Description |
|---|---|---|---|
--limit |
int | 20 |
Number of results |
--offset |
int | 0 |
Result offset |
--search |
string | Search query |
API¶
1 | |
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
limit |
int | Max results |
offset |
int | Skip results |
search |
string | Search query |
Request Example¶
1 | |
1 2 3 | |
Response¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | |
Model: IVSThreatEntry¶
| Field | Type | Description |
|---|---|---|
id |
string | Threat ID |
name |
string | Threat name |
created_at |
timestamp | Creation timestamp |
updated_at |
timestamp | Last update timestamp |
status |
string | Threat status |
risk |
IVSThreatRisk | Risk scoring |
Model: IVSThreatRisk¶
| Field | Type | Description |
|---|---|---|
score |
number | Risk score |
severity |
string | Risk severity |