File: scan-example

package info (click to toggle)
nmap 7.93%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 44,552 kB
  • sloc: cpp: 60,990; ansic: 30,785; python: 17,679; xml: 11,558; sh: 11,320; perl: 2,679; makefile: 1,000; java: 45; objc: 43
file content (7 lines) | stat: -rwxr-xr-x 234 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
NCAT_PATH=../../../..
if [ -a "$NCAT_PATH/ncat" ]
  then
	for addr in `cat iplist`; do $NCAT_PATH/ncat --disable-eof-exit $addr 80 < get.request; done;
else
	echo "Ncat is not buit. Please build Ncat before you use these scripts";
fi