From bf5fcbab2cac692f6aa392a5dd6b639422889c19 Mon Sep 17 00:00:00 2001 From: Tib3rius <48113936+Tib3rius@users.noreply.github.com> Date: Fri, 22 Mar 2019 18:46:11 -0400 Subject: [PATCH] Added UDP scan to quick profile. --- port-scan-profiles.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/port-scan-profiles.toml b/port-scan-profiles.toml index b983eaf..742e68c 100644 --- a/port-scan-profiles.toml +++ b/port-scan-profiles.toml @@ -26,6 +26,12 @@ command = 'nmap -vv --reason -Pn -sV --version-all -oN "{scandir}/_quick_tcp_nmap.txt" -oX "{scandir}/_quick_tcp_nmap.xml" {address}' pattern = '^(?P\d+)\/(?P(tcp|udp))(.*)open(\s*)(?P[\w\-\/]+)(\s*)(.*)$' + [quick.nmap-top-20-udp] + + [quick.nmap-top-20-udp.service-detection] + command = 'nmap -vv --reason -Pn -sU -A --top-ports=20 --version-all -oN "{scandir}/_top_20_udp_nmap.txt" -oX "{scandir}/_top_20_udp_nmap.xml" {address}' + pattern = '^(?P\d+)\/(?P(tcp|udp))(.*)open(\s*)(?P[\w\-\/]+)(\s*)(.*)$' + [udp] [udp.udp-top-20]