Загрузка данных


select(Host.IpAddress, Host.@Vulners, Host.@vulners.Status) | filter(Host.@Vulners.Status not in ['excluded','fixed']) | join(select(Host.IpAddress, host.@Groups.name) as Q, Host.IpAddress = Q.Host.IpAddress) | select(COUNTUNIQUE(Host.@Vulners), Q.host.@Groups.name)

select(Host.IpAddress, Host.Endpoints<TransportEndpoint>.@Vulners, Host.Endpoints<TransportEndpoint>.@vulners.name) | filter(Host.Endpoints<TransportEndpoint>.@vulners.name != "Неподдерживаемая версия") | join(select(Host.IpAddress, host.@Groups.name) as Q, Host.IpAddress = Q.Host.IpAddress) | select(COUNTUNIQUE(Host.Endpoints<TransportEndpoint>.@Vulners), Q.host.@Groups.name)

select(Host.IpAddress, Host.@Vulners, host.@vulners.name) | filter(host.@vulners.name != "Неподдерживаемая версия") | join(select(Host.IpAddress, host.@Groups.name) as Q, Host.IpAddress = Q.Host.IpAddress) | select(COUNTUNIQUE(Host.@Vulners), Q.host.@Groups.name)