Report on Hosts
This tool allows you to generate a report on the breakdown of a value present on the Hosts returned
by your query. For example, to generate a report on ports seen on Hosts with HTTP services, you could
query for services.service_name: HTTP
and then generate a report on the breakdown
of the field
services.port
Report for Hosts
Raw Data
services.tls.version_selected | services | |
---|---|---|
TLSv1_2 | 76,076,531 | 31.24% |
TLSv1_3 | 37,018,889 | 15.2% |
TLSv1_0 | 3,561,568 | 1.46% |
TLSv1_1 | 587,476 | 0.24% |
Total | 243,516,089 | 100.0% |
JSON Report
{
"total": 243516089,
"total_omitted": 0,
"duration": 262,
"potential_deviation": 0,
"buckets": [
{
"key": "TLSv1_2",
"count": 76076531
},
{
"key": "TLSv1_3",
"count": 37018889
},
{
"key": "TLSv1_0",
"count": 3561568
},
{
"key": "TLSv1_1",
"count": 587476
}
],
"query": "services.tls.version_selected: *",
"field": "services.tls.version_selected"
}