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. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@904 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
33992fd9e9
commit
a1e43d7575
|
@ -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.
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue