mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
ebaa0d86ff
* Added ACK scanning. This scan technique is great for testing firewall rulesets. It can NOT find open ports, but it can distinguish between filtered/unfilterd by sending an ACK packet to each port and waiting for a RST to come back. Filtered ports will not send back a RST (or will send ICMP unreachables). This scan type is activated with -sA . * Documented the Window scan (-sW) * "Protocol" field in output eliminated. It is now printed right next to the number (/etc/services style). Like "22/tcp". * Added --resume option to continue a large network scan where you left off. It also allows you to start and stop for policy reasons
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
--- Makefile.in.orig Sun Mar 26 03:04:48 2000
|
|
+++ Makefile.in Sun Mar 26 17:16:58 2000
|
|
@@ -5,13 +5,13 @@
|
|
sbindir = @sbindir@
|
|
mandir = @mandir@
|
|
srcdir = @srcdir@
|
|
-libdir = @libdir@/nmap
|
|
+libdir = @libdir@
|
|
deskdir = $(prefix)/share/gnome/apps/Utilities
|
|
|
|
CC = @CC@
|
|
CCOPT =
|
|
LIBPCAPDIR = @libpcapdir@
|
|
-INCLS = -I. -I$(LIBPCAPDIR)
|
|
+INCLS = -I. # -I$(LIBPCAPDIR)
|
|
DEFS = @DEFS@ -DVERSION=\"$(VERSION)\" -DLIBDIR=\"$(libdir)\"
|
|
CFLAGS = @CFLAGS@ $(CCOPT) $(DEFS) $(INCLS)
|
|
# CFLAGS = -g -Wall $(DEFS) $(INCLS)
|
|
@@ -36,7 +36,7 @@
|
|
|
|
all: $(TARGET) nmapfe/nmapfe
|
|
|
|
-$(TARGET): $(DEPS) @PCAP_DEPENDS@ $(OBJS)
|
|
+$(TARGET): $(DEPS) $(OBJS)
|
|
@echo Compiling nmap
|
|
rm -f $@
|
|
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
|
|
@@ -128,7 +128,7 @@
|
|
$(MAKEDEPEND) $(INCLS) -s "# DO NOT DELETE" -- $(DEFS) -- $(SRCS)
|
|
|
|
install: $(TARGET)
|
|
- $(SHTOOL) mkdir -f -p -m 755 $(bindir) $(mandir)/man1 $(libdir) $(deskdir)
|
|
+ $(SHTOOL) mkdir -f -p -m 755 $(bindir) $(mandir)/man1 $(libdir)
|
|
$(INSTALL) -c -m 755 nmap $(bindir)/nmap
|
|
@echo "If the next command failes -- you cannot use the X front end"
|
|
-test -f nmapfe/nmapfe && $(INSTALL) -c -m 755 nmapfe/nmapfe $(bindir)/nmapfe && $(SHTOOL) mkln -f -s $(bindir)/nmapfe $(bindir)/xnmap && $(INSTALL) -c -m 644 nmapfe.desktop $(deskdir)/nmapfe.desktop
|