diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index c2f8423e99..e7ffb1aa9f 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,8 @@ +2008-06-30 Sancho Lerena <slerena@gmail.com> + + * util/plugin/udp_nmap_plugin.sh: Added UDP port check plugin + that uses NMAP to check if UDP ports are open. + 2008-06-19 Sancho Lerena <slerena@gmail.com> * pandora_plugin: Added startup script. diff --git a/pandora_server/util/plugin/udp_nmap_plugin.sh b/pandora_server/util/plugin/udp_nmap_plugin.sh new file mode 100755 index 0000000000..3a48c9545a --- /dev/null +++ b/pandora_server/util/plugin/udp_nmap_plugin.sh @@ -0,0 +1,5 @@ +#!/bin/bash +# This is called like -p xxx -h xxxx +HOST=$4 +PORT=$2 +nmap -T5 -p $PORT -sU $HOST | grep open | wc -l