commit nmap for openSUSE:Factory

2019-09-24 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2019-09-25 08:16:29

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new.7948 (New)


Package is "nmap"

Wed Sep 25 08:16:29 2019 rev:63 rq:732668 version:7.80

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2019-08-30 
14:42:54.061411733 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new.7948/nmap.changes  2019-09-25 
08:16:30.974482519 +0200
@@ -1,0 +2,5 @@
+Sun Sep 22 19:41:24 UTC 2019 - Christian Boltz 
+
+- fix typo in description
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.UwSSZx/_old  2019-09-25 08:16:32.202482347 +0200
+++ /var/tmp/diff_new_pack.UwSSZx/_new  2019-09-25 08:16:32.206482347 +0200
@@ -67,7 +67,7 @@
 version) those hosts are offering, what operating systems (and OS
 versions) they are running, what type of packet filters/firewalls are
 in use, and dozens of other characteristics. It scans large networks,
-nad works fine against single hosts.
+and works fine against single hosts.
 
 %package -n zenmap
 Summary:A graphical front-end for Nmap





commit nmap for openSUSE:Factory

2019-08-30 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2019-08-30 14:42:31

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new.7948 (New)


Package is "nmap"

Fri Aug 30 14:42:31 2019 rev:62 rq:727169 version:7.80

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2019-07-31 
14:28:14.002154145 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new.7948/nmap.changes  2019-08-30 
14:42:54.061411733 +0200
@@ -1,0 +2,17 @@
+Tue Aug 27 07:28:22 UTC 2019 - Robert Frohl 
+
+- Update to 7.80: 
+  * 11 new NSE scripts
+  * Added AF_VSOCK (Linux VM sockets) functionality to Nsock and Ncat
+  * Deprecate and disable the -PR (ARP ping) host discovery option. ARP ping is
+already used whenever possible.
+  * Temporary RSA keys are now 2048-bit to resolve a compatibility issue with
+OpenSSL library configured with security level 2.
+  * See https://nmap.org/changelog#7.80 for the complete changelog.
+- Removed patches included upstream: 
+  * nmap-7.70-CVE-2018-15173_pcre_limits.patch
+  * nmap-7.70-fix_infinite_loop.patch
+- Added netmask_negativ_bitshift.patch to fix netmask calculation for certain
+  architectures.
+
+---

Old:

  nmap-7.70-CVE-2018-15173_pcre_limits.patch
  nmap-7.70-fix_infinite_loop.patch
  nmap-7.70.tar.bz2
  nmap-7.70.tar.bz2.asc

New:

  netmask_negativ_bitshift.patch
  nmap-7.80.tar.bz2
  nmap-7.80.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.1CmVHl/_old  2019-08-30 14:42:56.037411530 +0200
+++ /var/tmp/diff_new_pack.1CmVHl/_new  2019-08-30 14:42:56.041411530 +0200
@@ -27,7 +27,7 @@
 %define with_python2 1
 %endif
 Name:   nmap
-Version:7.70
+Version:7.80
 Release:0
 Summary:Network exploration tool and security scanner
 License:GPL-2.0-or-later
@@ -40,8 +40,7 @@
 Patch2: nmap-4.75-nostrip.patch
 Patch3: su-to-zenmap.patch
 Patch4: nmap-ncat-skip-network-tests.patch
-Patch5: nmap-7.70-CVE-2018-15173_pcre_limits.patch
-Patch6: nmap-7.70-fix_infinite_loop.patch
+Patch5: netmask_negativ_bitshift.patch
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -124,7 +123,6 @@
 %endif
 %patch4 -p1
 %patch5 -p1
-%patch6 -p1
 
 # use system provided libraries
 rm -rf libpcap libpcre macosx mswin32
@@ -204,7 +202,7 @@
 [[ $compiled_with == *\ liblua-5.3* ]]
 %else
 # lua in nmap tarball identifies itself as "liblua-5.3.3"
-[[ $compiled_with == *\ liblua-5.3.3* ]]
+[[ $compiled_with == *\ nmap-liblua-5.3.* ]]
 %endif
 #
 

++ netmask_negativ_bitshift.patch ++
commit 146e21d8aa24b176be6a4f6638dbfd37df85cffb
Author: Robert Frohl 
Date:   Wed Aug 28 13:21:04 2019 +0200

Fixed undefined behavior in netmask generation #1717

diff --git a/nbase/nbase_addrset.c b/nbase/nbase_addrset.c
index 6f91bc1b2..19e3f1119 100644
--- a/nbase/nbase_addrset.c
+++ b/nbase/nbase_addrset.c
@@ -500,7 +500,7 @@ static int sockaddr_to_mask (const struct sockaddr *sa, int 
bits, u32 *mask)
   mask[i] = 0;
 }
 else {
-  mask[i] = ~((1 << (unmasked_bits - (32 * (4 - i - 1);
+  mask[i] = ~(0x % (1 << unmasked_bits));
 }
   }
   return 1;
++ nmap-7.70.tar.bz2 -> nmap-7.80.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.70.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new.7948/nmap-7.80.tar.bz2 differ: char 11, 
line 1




commit nmap for openSUSE:Factory

2019-07-31 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2019-07-31 14:28:12

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new.4126 (New)


Package is "nmap"

Wed Jul 31 14:28:12 2019 rev:61 rq:719810 version:7.70

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2019-05-03 
22:48:10.820010783 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new.4126/nmap.changes  2019-07-31 
14:28:14.002154145 +0200
@@ -1,0 +2,6 @@
+Tue Jul 30 10:28:34 UTC 2019 - Kristyna Streitova 
+
+- add nmap-7.70-fix_infinite_loop.patch to fix infinite loop in
+  tls-alpn when server is forcing a protocol [bsc#1143277]
+
+---

New:

  nmap-7.70-fix_infinite_loop.patch



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.fOZDBW/_old  2019-07-31 14:28:15.138152050 +0200
+++ /var/tmp/diff_new_pack.fOZDBW/_new  2019-07-31 14:28:15.142152044 +0200
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -41,6 +41,7 @@
 Patch3: su-to-zenmap.patch
 Patch4: nmap-ncat-skip-network-tests.patch
 Patch5: nmap-7.70-CVE-2018-15173_pcre_limits.patch
+Patch6: nmap-7.70-fix_infinite_loop.patch
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -123,6 +124,7 @@
 %endif
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 # use system provided libraries
 rm -rf libpcap libpcre macosx mswin32

++ nmap-7.70-fix_infinite_loop.patch ++
>From 3b8b6516a7697d8b6d4cd87e253daa369fcdbf2a Mon Sep 17 00:00:00 2001
From: dmiller 
Date: Mon, 14 May 2018 16:11:02 +
Subject: [PATCH] Fix infinite loop in tls-alpn when server is forcing a
 protocol.

---
 scripts/tls-alpn.nse | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/scripts/tls-alpn.nse b/scripts/tls-alpn.nse
index 307e1572c3..3f6387a2f5 100644
--- a/scripts/tls-alpn.nse
+++ b/scripts/tls-alpn.nse
@@ -112,13 +112,13 @@ local check_alpn = function(response)
 
   if record.type == "handshake" and record.body[1].type == "server_hello" then
 if record.body[1].extensions == nil then
-  stdnse.debug1("Server does not support TLS ALPN extension.")
+  stdnse.debug1("Server did not return TLS ALPN extension.")
   return nil
 end
 local results = {}
 local alpndata = record.body[1].extensions[ALPN_NAME]
 if alpndata == nil then
-  stdnse.debug1("Server does not support TLS ALPN extension.")
+  stdnse.debug1("Server did not return TLS ALPN extension.")
   return nil
 end
 -- Parse data
@@ -185,26 +185,26 @@ action = function(host, port)
   local result = check_alpn(response)
   if not result then
 stdnse.debug1("None of %d protocols chosen", #alpn_protos)
-break
+goto ALPN_DONE
   end
   for i, p in ipairs(result) do
 if i > 1 then
   stdnse.verbose1("Server violates RFC: sent additional protocol %s", 
p)
-end
-chosen[#chosen+1] = p
-if not find_and_remove(alpn_protos, p) then
-  stdnse.debug1("Chosen ALPN protocol %s was not offered", p)
-  if stdnse.contains(chosen, p) then
-stdnse.debug1("Server is forcing %s", p)
-break
+else
+  chosen[#chosen+1] = p
+  if not find_and_remove(alpn_protos, p) then
+stdnse.debug1("Chosen ALPN protocol %s was not offered", p)
+-- Server is forcing this protocol, no need to continue offering.
+goto ALPN_DONE
   end
 end
   end
 else
   stdnse.debug1("Client hello failed with %d protocols", #alpn_protos)
-  break
+  goto ALPN_DONE
 end
   end
+  ::ALPN_DONE::
   if next(chosen) then
 return chosen
   end




commit nmap for openSUSE:Factory

2019-05-03 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2019-05-03 22:48:09

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new.5148 (New)


Package is "nmap"

Fri May  3 22:48:09 2019 rev:60 rq:700476 version:7.70

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2018-05-29 
10:41:59.334982875 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new.5148/nmap.changes  2019-05-03 
22:48:10.820010783 +0200
@@ -1,0 +2,9 @@
+Fri May  3 14:53:44 UTC 2019 - Kristýna Streitová 
+
+- add nmap-7.70-CVE-2018-15173_pcre_limits.patch to reduce LibPCRE
+  resource limits so that version detection can't use as much of
+  the stack. Previously Nmap could crash when run on low-memory
+  systems against target services which are intentionally or
+  accidentally difficult to match [bsc#1104139] [CVE-2018-15173].
+
+---

New:

  nmap-7.70-CVE-2018-15173_pcre_limits.patch



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.5BnMC5/_old  2019-05-03 22:48:11.896013253 +0200
+++ /var/tmp/diff_new_pack.5BnMC5/_new  2019-05-03 22:48:11.896013253 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -40,6 +40,7 @@
 Patch2: nmap-4.75-nostrip.patch
 Patch3: su-to-zenmap.patch
 Patch4: nmap-ncat-skip-network-tests.patch
+Patch5: nmap-7.70-CVE-2018-15173_pcre_limits.patch
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -121,6 +122,7 @@
 %patch3
 %endif
 %patch4 -p1
+%patch5 -p1
 
 # use system provided libraries
 rm -rf libpcap libpcre macosx mswin32

++ nmap-7.70-CVE-2018-15173_pcre_limits.patch ++
>From 6d8bb6df229f7acf768bcebfe14cdc8c3dbbe92b Mon Sep 17 00:00:00 2001
From: dmiller 
Date: Wed, 8 Aug 2018 16:36:21 +
Subject: [PATCH] Set limits on PCRE matches to avoid issues like #1147
CVE-2018-15173

---
 service_scan.cc | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/service_scan.cc b/service_scan.cc
index 1fc8056884..79e92b8f21 100644
--- a/service_scan.cc
+++ b/service_scan.cc
@@ -489,6 +489,15 @@ void ServiceProbeMatch::InitMatch(const char *matchtext, 
int lineno) {
   if (pcre_errptr != NULL)
 fatal("%s: failed to pcre_study regexp on line %d of nmap-service-probes: 
%s\n", __func__, lineno, pcre_errptr);
 
+  // Set some limits to avoid evil match cases.
+  // These are flexible; if they cause problems, increase them.
+#ifdef PCRE_ERROR_MATCHLIMIT
+  regex_extra->match_limit = 10; // 100K
+#endif
+#ifdef PCRE_ERROR_RECURSIONLIMIT
+  regex_extra->match_limit_recursion = 1; // 10K
+#endif
+
   free(modestr);
   free(flags);
 
@@ -568,6 +577,12 @@ const struct MatchDetails 
*ServiceProbeMatch::testMatch(const u8 *buf, int bufle
   if (o.debugging || o.verbose > 1)
 error("Warning: Hit PCRE_ERROR_MATCHLIMIT when probing for service %s 
with the regex '%s'", servicename, matchstr);
 } else
+#endif // PCRE_ERROR_MATCHLIMIT
+#ifdef PCRE_ERROR_RECURSIONLIMIT
+if (rc == PCRE_ERROR_RECURSIONLIMIT) {
+  if (o.debugging || o.verbose > 1)
+error("Warning: Hit PCRE_ERROR_RECURSIONLIMIT when probing for service 
%s with the regex '%s'", servicename, matchstr);
+} else
 #endif // PCRE_ERROR_MATCHLIMIT
   if (rc != PCRE_ERROR_NOMATCH) {
 fatal("Unexpected PCRE error (%d) when probing for service %s with the 
regex '%s'", rc, servicename, matchstr);




commit nmap for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2018-05-29 10:41:54

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Tue May 29 10:41:54 2018 rev:59 rq:611655 version:7.70

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2018-05-11 
09:19:02.756839535 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2018-05-29 
10:41:59.334982875 +0200
@@ -1,0 +2,7 @@
+Fri May 18 16:53:53 UTC 2018 - jeng...@inai.de
+
+- Trim filler wording from description.
+- Trim idempotent %if..%endif blocks.
+- Explicitly request bash for bashisms in %install.
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.Rea7Ge/_old  2018-05-29 10:42:01.130916587 +0200
+++ /var/tmp/diff_new_pack.Rea7Ge/_new  2018-05-29 10:42:01.134916440 +0200
@@ -16,6 +16,7 @@
 #
 
 
+%define _buildshell /bin/bash
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1330
@@ -57,20 +58,16 @@
 %endif
 
 %description
-Nmap ("Network Mapper") is a free and open source utility
-for network exploration or security auditing. Many systems and network
-administrators also find it useful for tasks such as network
+Nmap ("Network Mapper") is a utility for network exploration or
+security auditing. It may as well be used for tasks such as network
 inventory, managing service upgrade schedules, and monitoring host or
-service uptime. Nmap uses raw IP packets in novel ways to determine
-what hosts are available on the network, what services (application
-name and version) those hosts are offering, what operating systems
-(and OS versions) they are running, what type of packet
-filters/firewalls are in use, and dozens of other characteristics. It
-was designed to rapidly scan large networks, but works fine against
-single hosts. Nmap runs on all major computer operating systems, and
-both console and graphical versions are available.
+service uptime. Nmap uses raw IP packets to determine what hosts are
+available on the network, what services (application name and
+version) those hosts are offering, what operating systems (and OS
+versions) they are running, what type of packet filters/firewalls are
+in use, and dozens of other characteristics. It scans large networks,
+nad works fine against single hosts.
 
-%if %{with_python2}
 %package -n zenmap
 Summary:A graphical front-end for Nmap
 Group:  Productivity/Networking/Diagnostic
@@ -90,27 +87,23 @@
 Ndiff is a tool to aid in the comparison of Nmap scans. It takes two Nmap XML
 output files and prints the differences between them: hosts coming up and down,
 ports becoming open or closed, etc.
-%endif
 
 %package -n ncat
 Summary:Network tool to concatenate and redirect sockets
 Group:  Productivity/Networking/Diagnostic
 
 %description -n ncat
-Ncat is a feature packed networking utility which will read and
-write data across a network from the command line. It uses both
-TCP and UDP for communication and is designed to be a reliable
-back-end tool to instantly provide network connectivity to other
-applications and users. Ncat will not only work with IPv4 and IPv6
-but provides the user with a virtually limitless number of potential
-uses.
+Ncat is a networking utility which will read and write data across a
+network from the command line. It uses both TCP and UDP for
+communication and provides network connectivity to other applications
+and users.
 
 %package -n nping
 Summary:Packet generator
 Group:  Productivity/Networking/Diagnostic
 
 %description -n nping
-Nping is an open source tool for network packet generation, response
+Nping is a tool for network packet generation, response
 analysis and response time measurement. Nping allows to generate network
 packets of a wide range of protocols, letting users to tune virtually
 any field of the protocol headers. While Nping can be used as a simple





commit nmap for openSUSE:Factory

2018-05-11 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2018-05-11 09:19:01

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Fri May 11 09:19:01 2018 rev:58 rq:606288 version:7.70

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2018-03-24 
16:16:39.368737647 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2018-05-11 
09:19:02.756839535 +0200
@@ -1,0 +2,8 @@
+Thu May 10 12:31:02 UTC 2018 - kstreit...@suse.com
+
+- don't build zenmap and ndiff python2 subpackages because of the
+  python2 deprecation in Tumbleweed
+- run spec-cleaner
+- tweak Summaries and Descriptions
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.pbRxbh/_old  2018-05-11 09:19:04.012794028 +0200
+++ /var/tmp/diff_new_pack.pbRxbh/_new  2018-05-11 09:19:04.012794028 +0200
@@ -19,11 +19,17 @@
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1330
+# don't build python2 subpackages (zenmap, ndiff) because of the python2 
deprecation in Tumbleweed
+%if 0%{?suse_version} > 1500
+%define with_python2 0
+%else
+%define with_python2 1
+%endif
 Name:   nmap
 Version:7.70
 Release:0
-Summary:Portscanner
-License:GPL-2.0+
+Summary:Network exploration tool and security scanner
+License:GPL-2.0-or-later
 Group:  Productivity/Networking/Diagnostic
 Url:https://nmap.org/
 Source: https://nmap.org/dist/nmap-%{version}.tar.bz2
@@ -42,7 +48,6 @@
 BuildRequires:  pcre-devel
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with_system_lua}
 %if 0%{?suse_version} > 1320
 BuildRequires:  Lua(devel) = 5.3
@@ -52,77 +57,88 @@
 %endif
 
 %description
-Nmap is designed to allow system administrators and curious individuals
-to scan large networks to determine which hosts are up and what
-services they are offering. XNmap is a graphical front-end that shows
-nmap's output clearly.
-
-Find documentation in %{_docdir}/%{name}
+Nmap ("Network Mapper") is a free and open source utility
+for network exploration or security auditing. Many systems and network
+administrators also find it useful for tasks such as network
+inventory, managing service upgrade schedules, and monitoring host or
+service uptime. Nmap uses raw IP packets in novel ways to determine
+what hosts are available on the network, what services (application
+name and version) those hosts are offering, what operating systems
+(and OS versions) they are running, what type of packet
+filters/firewalls are in use, and dozens of other characteristics. It
+was designed to rapidly scan large networks, but works fine against
+single hosts. Nmap runs on all major computer operating systems, and
+both console and graphical versions are available.
 
+%if %{with_python2}
 %package -n zenmap
-Summary:A Graphical Front-End for Nmap
+Summary:A graphical front-end for Nmap
 Group:  Productivity/Networking/Diagnostic
 Requires:   %{name} = %{version}
 Requires:   python-gtk
 Obsoletes:  %{name}-gtk < %{version}
 Provides:   %{name}-gtk = %{version}-%{release}
-%py_requires
 
 %description -n zenmap
 zenmap is a graphical front-end for the nmap network scanner
 
-%package -n ncat
-Summary:Network Tool to concatenate and redirect Sockets
-Group:  Productivity/Networking/Diagnostic
-
-%description -n ncat
-Ncat is a feature-packed networking utility which will read and write data
-across a network from the command line. Ncat was written for the Nmap Project
-and is the culmination of the currently splintered family of Netcat
-incarnations. It uses both TCP and UDP for communication and is designed to be
-a reliable back-end tool to instantly provide network connectivity to other
-applications and users. Ncat will not only work with IPv4 and IPv6 but provides
-the user with a virtually limitless number of potential uses.
-
-Among Ncat´s vast number of features there is the ability to chain Ncats
-together, redirect both TCP and UDP ports to other sites, SSL support, and
-proxy connections via SOCKS4 or HTTP (CONNECT method) proxies (with optional
-proxy authentication as well). Some general principles apply to most
-applications and thus give you the capability of inst

commit nmap for openSUSE:Factory

2018-03-24 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2018-03-24 16:16:24

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Sat Mar 24 16:16:24 2018 rev:57 rq:590599 version:7.70

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2017-08-24 
18:43:50.541709758 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2018-03-24 
16:16:39.368737647 +0100
@@ -1,0 +2,9 @@
+Thu Mar 22 16:55:26 UTC 2018 - mvet...@suse.com
+
+- Update to 7.70:
+  * 14 new NSE scripts
+  * iec-identify probes for the IEC 60870-5-104 SCADA protocol
+  * ssh-brute performs brute-forcing of SSH password credentials
+  * See https://nmap.org/changelog.html#7.70 for the complete changelog.
+
+---

Old:

  nmap-7.60.tar.bz2
  nmap-7.60.tar.bz2.asc

New:

  nmap-7.70.tar.bz2
  nmap-7.70.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.cFLSB7/_old  2018-03-24 16:16:40.316703475 +0100
+++ /var/tmp/diff_new_pack.cFLSB7/_new  2018-03-24 16:16:40.316703475 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1330
 Name:   nmap
-Version:7.60
+Version:7.70
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-7.60.tar.bz2 -> nmap-7.70.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.60.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.70.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2017-08-24 18:43:48

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Thu Aug 24 18:43:48 2017 rev:56 rq:513818 version:7.60

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2017-07-08 
12:33:15.636091981 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2017-08-24 
18:43:50.541709758 +0200
@@ -1,0 +2,8 @@
+Wed Aug  2 08:49:17 UTC 2017 - erwin.vandeve...@gmail.com
+
+- Nmap 7.60:
+  * NSE scripts now have complete SSH support via libssh2
+  * Added 14 NSE scripts from 6 authors, bringing the total up to 579!
+  * See https://nmap.org/changelog.html#7.60 for the complete changelog.
+
+---

Old:

  nmap-7.50.tar.bz2
  nmap-7.50.tar.bz2.asc

New:

  nmap-7.60.tar.bz2
  nmap-7.60.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.PLYMJt/_old  2017-08-24 18:43:52.269466357 +0200
+++ /var/tmp/diff_new_pack.PLYMJt/_new  2017-08-24 18:43:52.273465793 +0200
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1330
 Name:   nmap
-Version:7.50
+Version:7.60
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-7.50.tar.bz2 -> nmap-7.60.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.50.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.60.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2017-07-08 Thread root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2017-07-08 12:33:10

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Sat Jul  8 12:33:10 2017 rev:55 rq:504146 version:7.50

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2017-01-12 
15:54:33.638306301 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2017-07-08 
12:33:15.636091981 +0200
@@ -1,0 +2,12 @@
+Fri Jun 16 10:57:22 UTC 2017 - idon...@suse.com
+
+- Nmap 7.50:
+  * Integrated all of your service/version detection fingerprints
+submitted from September to March (855 of them). The signature
+count went up 2.9% to 11,418. We now detect 1193 protocols from
+apachemq, bro, and clickhouse to jmon, slmp, and zookeeper.
+Highlights: http://seclists.org/nmap-dev/2017/q2/140
+  * Many added NSE scripts, OS fingerprints, service probes
+  * See https://nmap.org/changelog.html#7.50 for the complete changelog.
+
+---

Old:

  nmap-7.40.tar.bz2
  nmap-7.40.tar.bz2.asc

New:

  nmap-7.50.tar.bz2
  nmap-7.50.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.kcE7eu/_old  2017-07-08 12:33:16.483972386 +0200
+++ /var/tmp/diff_new_pack.kcE7eu/_new  2017-07-08 12:33:16.487971822 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1330
 Name:   nmap
-Version:7.40
+Version:7.50
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-7.40.tar.bz2 -> nmap-7.50.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.40.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.50.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2016-11-01 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2016-11-01 09:58:26

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2016-10-10 
16:24:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2016-11-01 
09:58:28.0 +0100
@@ -1,0 +2,9 @@
+Fri Oct 28 19:00:50 UTC 2016 - astie...@suse.com
+
+- Nmap 7.31:
+  * Fix the way Nmap handles scanning names that resolve to the
+same IP
+  * Zenmap: Better visual indication that display of hostname is
+tied to address in the Topology page
+
+---

Old:

  nmap-7.30.tar.bz2
  nmap-7.30.tar.bz2.asc

New:

  nmap-7.31.tar.bz2
  nmap-7.31.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.GqRgOd/_old  2016-11-01 09:58:30.0 +0100
+++ /var/tmp/diff_new_pack.GqRgOd/_new  2016-11-01 09:58:30.0 +0100
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1330
 Name:   nmap
-Version:7.30
+Version:7.31
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-7.30.tar.bz2 -> nmap-7.31.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.30.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.31.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2016-10-10 16:24:12

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2016-04-05 
10:44:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2016-10-10 
16:24:33.0 +0200
@@ -1,0 +2,9 @@
+Wed Oct  5 14:23:28 UTC 2016 - astie...@suse.com
+
+- Nmap 7.30:
+  * Many added NSE scripts, OS fingerprints, service proes
+  * Improved output filtering
+  * Using Lua 5.3
+  * Many bug fixes, improvements and performance enhancements
+
+---

Old:

  nmap-7.12.tar.bz2
  nmap-7.12.tar.bz2.asc

New:

  nmap-7.30.tar.bz2
  nmap-7.30.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.1i6I8r/_old  2016-10-10 16:24:41.0 +0200
+++ /var/tmp/diff_new_pack.1i6I8r/_new  2016-10-10 16:24:41.0 +0200
@@ -18,9 +18,9 @@
 
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
-%define with_system_lua 0%{?suse_version} >= 1220
+%define with_system_lua 0%{?suse_version} >= 1330
 Name:   nmap
-Version:7.12
+Version:7.30
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
@@ -45,10 +45,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with_system_lua}
 %if 0%{?suse_version} > 1320
-BuildRequires:  Lua(devel) = 5.2
+BuildRequires:  Lua(devel) = 5.3
 %else
-BuildRequires:  pkgconfig(lua) < 5.3
-BuildRequires:  pkgconfig(lua) >= 5.2
+BuildRequires:  pkgconfig(lua) >= 5.3
 %endif
 %endif
 
@@ -180,10 +179,10 @@
 [[ $compiled_with == *\ nmap-libdnet-* ]]
 # check for lua
 %if %{with_system_lua}
-[[ $compiled_with == *\ liblua-5.2* ]]
+[[ $compiled_with == *\ liblua-5.3* ]]
 %else
-# lua in nmap tarball identifies itself as "liblua-5.2.3"
-[[ $compiled_with == *\ liblua-5.2.3* ]]
+# lua in nmap tarball identifies itself as "liblua-5.3.3"
+[[ $compiled_with == *\ liblua-5.3.3* ]]
 %endif
 #
 

++ nmap-7.12.tar.bz2 -> nmap-7.30.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.12.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.30.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2016-04-05 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2016-04-05 10:44:36

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2016-03-26 
17:31:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2016-04-05 
10:44:38.0 +0200
@@ -1,0 +2,9 @@
+Sun Apr  3 20:27:44 UTC 2016 - astie...@suse.com
+
+- Nmap 7.12:
+  * Zenmap: Avoid file corruption in zenmap.conf
+  * NSE: VNC updates
+  * NSE: Add STARTTLS support for VNC, NNTP, and LMTP
+  * Add new service probes and match lines for OpenVPN
+
+---

Old:

  nmap-7.11.tar.bz2
  nmap-7.11.tar.bz2.asc

New:

  nmap-7.12.tar.bz2
  nmap-7.12.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.vVVRcw/_old  2016-04-05 10:44:39.0 +0200
+++ /var/tmp/diff_new_pack.vVVRcw/_new  2016-04-05 10:44:39.0 +0200
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1220
 Name:   nmap
-Version:7.11
+Version:7.12
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-7.11.tar.bz2 -> nmap-7.12.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.11.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.12.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2016-03-26 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2016-03-26 15:28:13

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2016-03-21 
12:45:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2016-03-26 
17:31:50.0 +0100
@@ -1,0 +2,12 @@
+Wed Mar 23 18:37:26 UTC 2016 - astie...@suse.com
+
+- Nmap 7.11:
+  * Add support for diffie-hellman-group-exchange-* SSH key
+exchange methods to ssh2.lua, allowing ssh-hostkey to run on
+servers that only support custom Diffie-Hellman groups.
+  * Add support in sslcert.lua for Microsoft SQL Server's TDS
+protocol, so you can now grab certs with ssl-cert or check
+ciphers with ssl-enum-ciphers.
+  * Fix crashes in Zenmap
+
+---

Old:

  nmap-7.10.tar.bz2
  nmap-7.10.tar.bz2.asc

New:

  nmap-7.11.tar.bz2
  nmap-7.11.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.3UaJGR/_old  2016-03-26 17:31:52.0 +0100
+++ /var/tmp/diff_new_pack.3UaJGR/_new  2016-03-26 17:31:52.0 +0100
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1220
 Name:   nmap
-Version:7.10
+Version:7.11
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-7.10.tar.bz2 -> nmap-7.11.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.10.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.11.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2016-03-21 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2016-03-21 12:45:53

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2015-12-16 
17:44:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2016-03-21 
12:45:56.0 +0100
@@ -1,0 +2,19 @@
+Fri Mar 18 16:36:47 UTC 2016 - astie...@suse.com
+
+- Nmap 7.10:
+  * Add 12 NSE scripts 
+  * Integrate OS, service/version detection fingerprint submissions
+  * Updated to various NSE scripts
+  * Zenmap: Remember window geometry (position and size) from the
+previous time Zenmap was run.
+  * Give option parsing errors after the long usage statement
+  * Changed Nmap's idea of reserved and private IP addresses to include
+169.254/16 (RFC3927) and remove 6/8, 7/8, and 55/8 networks
+(for -iR randomly generated targets)
+Usage of own exclusion lists with --exclude or --exclude-file is
+recommended to avoid scanning newly-valid addresses belonging to
+the US DoD.
+  * Allow the -4 option for Nmap to indicate IPv4 address family.
+  * Add verbosity level of 0 (-v0): not text output
+
+---

Old:

  nmap-7.01.tar.bz2
  nmap-7.01.tar.bz2.asc

New:

  nmap-7.10.tar.bz2
  nmap-7.10.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.vuRgNR/_old  2016-03-21 12:45:57.0 +0100
+++ /var/tmp/diff_new_pack.vuRgNR/_new  2016-03-21 12:45:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1220
 Name:   nmap
-Version:7.01
+Version:7.10
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
@@ -47,6 +47,7 @@
 %if 0%{?suse_version} > 1320
 BuildRequires:  Lua(devel) = 5.2
 %else
+BuildRequires:  pkgconfig(lua) < 5.3
 BuildRequires:  pkgconfig(lua) >= 5.2
 %endif
 %endif

++ nmap-7.01.tar.bz2 -> nmap-7.10.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.01.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.10.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2015-12-16 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2015-12-16 17:43:09

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2015-11-26 
17:03:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2015-12-16 
17:44:52.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec 14 19:16:33 UTC 2015 - astie...@suse.com
+
+- Nmap 7.01:
+  * various bug fixes in NSE
+
+---

Old:

  nmap-7.00.tar.bz2
  nmap-7.00.tar.bz2.asc

New:

  nmap-7.01.tar.bz2
  nmap-7.01.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.icCsBt/_old  2015-12-16 17:44:54.0 +0100
+++ /var/tmp/diff_new_pack.icCsBt/_new  2015-12-16 17:44:54.0 +0100
@@ -20,7 +20,7 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1220
 Name:   nmap
-Version:7.00
+Version:7.01
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-7.00.tar.bz2 -> nmap-7.01.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.00.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.01.tar.bz2 differ: char 11, line 1




commit nmap for openSUSE:Factory

2015-11-26 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2015-11-26 17:03:37

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2015-10-08 
08:24:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2015-11-26 
17:03:38.0 +0100
@@ -1,0 +2,12 @@
+Sun Nov 22 17:31:09 UTC 2015 - mar...@gmx.de
+
+- Nmap 7.00:
+  * see /usr/share/doc/packages/nmap/CHANGELOG
+- removed patches:
+  * nmap-4.00-noreturn.diff
+  * nmap-6.00-libpcap-filter.diff
+  not needed since we do not build against the bundled libpcap
+- updated patch:
+  * nmap-ncat-skip-network-tests.patch
+
+---

Old:

  nmap-4.00-noreturn.diff
  nmap-6.00-libpcap-filter.diff
  nmap-6.47.tar.bz2
  nmap-6.47.tar.bz2.asc

New:

  nmap-7.00.tar.bz2
  nmap-7.00.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.PKEFyv/_old  2015-11-26 17:03:40.0 +0100
+++ /var/tmp/diff_new_pack.PKEFyv/_new  2015-11-26 17:03:40.0 +0100
@@ -20,21 +20,19 @@
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1220
 Name:   nmap
-Version:6.47
+Version:7.00
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
 Group:  Productivity/Networking/Diagnostic
-Url:http://nmap.org/
-Source: http://nmap.org/dist/nmap-%{version}.tar.bz2
+Url:https://nmap.org/
+Source: https://nmap.org/dist/nmap-%{version}.tar.bz2
 Source1:
https://svn.nmap.org/nmap/docs/nmap_gpgkeys.txt#/%{name}.keyring
 Source2:http://nmap.org/dist/sigs/%{name}-%{version}.tar.bz2.asc
-Patch0: nmap-6.00-libpcap-filter.diff
-Patch1: nmap-4.00-noreturn.diff
-Patch2: nmap-5.61-desktop_files.patch
-Patch3: nmap-4.75-nostrip.patch
-Patch5: su-to-zenmap.patch
-Patch7: nmap-ncat-skip-network-tests.patch
+Patch1: nmap-5.61-desktop_files.patch
+Patch2: nmap-4.75-nostrip.patch
+Patch3: su-to-zenmap.patch
+Patch4: nmap-ncat-skip-network-tests.patch
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -112,12 +110,13 @@
 
 %prep
 %setup -q
-%patch0
 %patch1
 %patch2
 %patch3
-%patch5
-%patch7 -p1
+%patch4 -p1
+
+# use system provided libraries
+rm -rf libpcap libpcre macosx mswin32
 
 #fix locale dir
 mv zenmap/share/zenmap/locale zenmap/share
@@ -148,6 +147,7 @@
 %install
 make DESTDIR=%{buildroot} deskdir="%{_datadir}/gnome/apps/Utilities/" install
 rm "%{buildroot}%{_bindir}/uninstall_zenmap"
+rm "%{buildroot}%{_bindir}/uninstall_ndiff"
 install -d "%{buildroot}%{_datadir}/pixmaps/"
 ln -s ../zenmap/pixmaps/zenmap.png "%{buildroot}%{_datadir}/pixmaps/zenmap.png"
 %suse_update_desktop_file zenmap System Network

++ nmap-6.47.tar.bz2 -> nmap-7.00.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-6.47.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.00.tar.bz2 differ: char 11, line 1

++ nmap-ncat-skip-network-tests.patch ++
--- /var/tmp/diff_new_pack.PKEFyv/_old  2015-11-26 17:03:40.0 +0100
+++ /var/tmp/diff_new_pack.PKEFyv/_new  2015-11-26 17:03:40.0 +0100
@@ -1,43 +1,44 @@
-From: Andreas Stieger 
-Date: 2012-12-08 13:31:24 +
-Subject: [PATCH] ncat - skip tests requiring name resolution
-References: http://seclists.org/nmap-dev/2012/q4/373
-Upstream: never
+From 7aa8e9fd460f274931641b17be20f6c6c2242a1b Mon Sep 17 00:00:00 2001
+From: Martin Hauke 
+Date: Sun, 22 Nov 2015 18:20:31 +0100
+Subject: [PATCH] ncat - skip tests requiring name resolution References:
+ http://seclists.org/nmap-dev/2012/q4/373 Upstream: never
 
 Some tests in the ncat test script require name resolution which is not 
available in OBS. Remove tests.
-
 ---
- ncat/test/test-addrset.sh |   20 
- 1 file changed, 20 deletions(-)
+ ncat/test/test-addrset.sh | 19 ---
+ 1 file changed, 19 deletions(-)
 
-Index: nmap-6.25/ncat/test/test-addrset.sh
-===
 nmap-6.25.orig/ncat/test/test-addrset.sh   2012-12-08 13:30:07.0 
+
-+++ nmap-6.25/ncat/test/test-addrset.sh2012-12-08 13:30:37.0 
+
-@@ -227,26 +227,6 @@ test_addrset "1:2::0003/0" "1:2::3 1:2::
+diff --git a/ncat/test/test-addrset.sh b/ncat/test/test-addrset.sh
+index 7f54023..1a7944e 100755
+--- a/ncat/test/test-addrset.sh
 b/ncat/test/test-

commit nmap for openSUSE:Factory

2015-10-07 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2015-10-08 08:24:48

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2015-08-01 
11:39:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2015-10-08 
08:24:51.0 +0200
@@ -1,0 +2,10 @@
+Mon Oct  5 19:04:56 UTC 2015 - astie...@suse.com
+
+- Unbreak everything not Factory
+
+---
+Mon Oct  5 16:33:47 UTC 2015 - plinn...@opensuse.org
+
+- Fix the build for Factory. Insist on lua 5.2.x
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.vceqb8/_old  2015-10-08 08:24:52.0 +0200
+++ /var/tmp/diff_new_pack.vceqb8/_new  2015-10-08 08:24:52.0 +0200
@@ -46,9 +46,10 @@
 BuildRequires:  update-desktop-files
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with_system_lua}
-BuildRequires:  pkgconfig(lua) >= 5.2
 %if 0%{?suse_version} > 1320
-BuildRequires:  lua52-devel
+BuildRequires:  Lua(devel) = 5.2
+%else
+BuildRequires:  pkgconfig(lua) >= 5.2
 %endif
 %endif
 





commit nmap for openSUSE:Factory

2015-08-01 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2015-08-01 11:39:09

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2015-03-11 
09:59:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2015-08-01 
11:39:11.0 +0200
@@ -1,0 +2,8 @@
+Thu Jul 30 10:21:10 UTC 2015 - dims...@opensuse.org
+
+- BuildRequire lua52-devel on openSUSE > 13.2 (current Tumbleweed):
+  nmap has not been ported to LUA 5.3 yet.
+- Minor fix in check session: internal lua identifies itself as
+  5.2.3 by now.
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.V6Jbf3/_old  2015-08-01 11:39:12.0 +0200
+++ /var/tmp/diff_new_pack.V6Jbf3/_new  2015-08-01 11:39:12.0 +0200
@@ -47,6 +47,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with_system_lua}
 BuildRequires:  pkgconfig(lua) >= 5.2
+%if 0%{?suse_version} > 1320
+BuildRequires:  lua52-devel
+%endif
 %endif
 
 %description
@@ -177,8 +180,8 @@
 %if %{with_system_lua}
 [[ $compiled_with == *\ liblua-5.2* ]]
 %else
-# lua in nmap tarball identifies itself as "liblua-5.2.1"
-[[ $compiled_with == *\ liblua-5.2.1* ]]
+# lua in nmap tarball identifies itself as "liblua-5.2.3"
+[[ $compiled_with == *\ liblua-5.2.3* ]]
 %endif
 #
 





commit nmap for openSUSE:Factory

2015-03-11 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2015-03-11 09:59:03

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2014-08-27 
16:53:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2015-03-11 
09:59:04.0 +0100
@@ -1,0 +2,6 @@
+Tue Mar  3 20:03:31 UTC 2015 - astie...@suse.com
+
+- fix build on SLE 12 by removing gpg-offline dependency
+- run spec-cleaner
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.WKlQgd/_old  2015-03-11 09:59:05.0 +0100
+++ /var/tmp/diff_new_pack.WKlQgd/_new  2015-03-11 09:59:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,43 +16,38 @@
 #
 
 
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
-
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+%{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 %define with_system_lua 0%{?suse_version} >= 1220
-
 Name:   nmap
-BuildRequires:  dos2unix
-BuildRequires:  fdupes
-BuildRequires:  gcc-c++
-BuildRequires:  gtk2-devel
-BuildRequires:  libpcap-devel
-BuildRequires:  openssl-devel
-BuildRequires:  pcre-devel
-BuildRequires:  python-devel
-BuildRequires:  update-desktop-files
-%if %with_system_lua 
-BuildRequires:  pkgconfig(lua) >= 5.2
-%endif
-%if 0%{?suse_version} >= 1230
-BuildRequires:  gpg-offline
-%endif
-Url:http://nmap.org/
 Version:6.47
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
 Group:  Productivity/Networking/Diagnostic
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:http://nmap.org/
 Source: http://nmap.org/dist/nmap-%{version}.tar.bz2
 Source1:
https://svn.nmap.org/nmap/docs/nmap_gpgkeys.txt#/%{name}.keyring
 Source2:http://nmap.org/dist/sigs/%{name}-%{version}.tar.bz2.asc
-Patch:  nmap-6.00-libpcap-filter.diff
+Patch0: nmap-6.00-libpcap-filter.diff
 Patch1: nmap-4.00-noreturn.diff
 Patch2: nmap-5.61-desktop_files.patch
 Patch3: nmap-4.75-nostrip.patch
 Patch5: su-to-zenmap.patch
 Patch7: nmap-ncat-skip-network-tests.patch
+BuildRequires:  dos2unix
+BuildRequires:  fdupes
+BuildRequires:  gcc-c++
+BuildRequires:  gtk2-devel
+BuildRequires:  libpcap-devel
+BuildRequires:  openssl-devel
+BuildRequires:  pcre-devel
+BuildRequires:  python-devel
+BuildRequires:  update-desktop-files
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if %{with_system_lua}
+BuildRequires:  pkgconfig(lua) >= 5.2
+%endif
 
 %description
 Nmap is designed to allow system administrators and curious individuals
@@ -62,32 +57,18 @@
 
 Find documentation in %{_docdir}/%{name}
 
-
-
-
-Authors:
-
-Fyodor 
-
 %package -n zenmap
 Summary:A Graphical Front-End for Nmap
 Group:  Productivity/Networking/Diagnostic
 Requires:   %{name} = %{version}
+Requires:   python-gtk
 Obsoletes:  %{name}-gtk < %{version}
 Provides:   %{name}-gtk = %{version}-%{release}
 %py_requires
-Requires:   python-gtk
 
 %description -n zenmap
 zenmap is a graphical front-end for the nmap network scanner
 
-
-
-
-Authors:
-
-Fyodor 
-
 %package -n ncat
 Summary:Network Tool to concatenate and redirect Sockets
 Group:  Productivity/Networking/Diagnostic
@@ -108,13 +89,6 @@
 applications and thus give you the capability of instantly adding networking
 support to software that would normally never support it.
 
-
-
-
-Authors:
-
-Fyodor 
-
 %package -n ndiff
 Summary:Compare Results of Nmap Scans
 Group:  Productivity/Networking/Diagnostic
@@ -125,13 +99,6 @@
 output files and prints the differences between them: hosts coming up and down,
 ports becoming open or closed, etc.
 
-
-
-
-Authors:
-
-Fyodor 
-
 %package -n nping
 Summary:Compare Re

commit nmap for openSUSE:Factory

2014-08-27 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2014-08-27 16:53:14

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2014-04-30 
15:09:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2014-08-27 
16:53:26.0 +0200
@@ -1,0 +2,16 @@
+Tue Aug 26 23:28:28 UTC 2014 - andreas.stie...@gmx.de
+
+- Nmap 6.47:
+  * updated IPv4 OS fingerprints
+  * Removed the External Entity Declaration from the DOCTYPE in
+Nmap's XML. The doctype is now: 
+  * Ncat: Fixed SOCKS5 username/password authentication
+  * Avoid formatting NULL as "%s" when running nmap --iflist
+  * Zenmap, Ndiff: Avoid crashing with old PyXML package
+  * Handle ICMP admin-prohibited messages when doing service version
+detection.
+  * NSE: Fix a bug causing http.head to not honor redirects.
+  * Zenmap: Fix a bug in DiffViewer causing a crash
+- fix self-obsoletion of zenmap (nmap-gtk)
+
+---

Old:

  nmap-6.46.tar.bz2
  nmap-6.46.tar.bz2.asc

New:

  nmap-6.47.tar.bz2
  nmap-6.47.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.cq1W25/_old  2014-08-27 16:53:28.0 +0200
+++ /var/tmp/diff_new_pack.cq1W25/_new  2014-08-27 16:53:28.0 +0200
@@ -38,7 +38,7 @@
 BuildRequires:  gpg-offline
 %endif
 Url:http://nmap.org/
-Version:6.46
+Version:6.47
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
@@ -72,9 +72,9 @@
 %package -n zenmap
 Summary:A Graphical Front-End for Nmap
 Group:  Productivity/Networking/Diagnostic
-Requires:   %name = %version
-Obsoletes:  %name-gtk
-Provides:   %name-gtk = %{version}-%{release}
+Requires:   %{name} = %{version}
+Obsoletes:  %{name}-gtk < %{version}
+Provides:   %{name}-gtk = %{version}-%{release}
 %py_requires
 Requires:   python-gtk
 

++ nmap-6.46.tar.bz2 -> nmap-6.47.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-6.46.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-6.47.tar.bz2 differ: char 11, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2014-04-30 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2014-04-30 15:09:45

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2014-04-13 
13:16:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2014-04-30 
15:09:51.0 +0200
@@ -1,0 +2,16 @@
+Sat Apr 26 10:34:06 UTC 2014 - andreas.stie...@gmx.de
+
+- Nmap 6.46
+- NSE: 
+  * Made numerous improvements to ssl-heartbleed to provide
+more reliable detection of the vulnerability
+  * Fix some bugs which could cause snmp-ios-config and
+snmp-sysdescr scripts to crash
+  * Improved performance of citrixlua library when handling large
+XML responses containing application lists
+- Zenmap:
+  * Fixed a bug which caused this crash message: "IOError:
+[Errno socket error] [Errno 10060] A connection attempt
+failed [...]" due to DOCTYPE definition to Nmap's XML output
+
+---

Old:

  nmap-6.45.tar.bz2
  nmap-6.45.tar.bz2.asc

New:

  nmap-6.46.tar.bz2
  nmap-6.46.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.cy4y2U/_old  2014-04-30 15:09:53.0 +0200
+++ /var/tmp/diff_new_pack.cy4y2U/_new  2014-04-30 15:09:53.0 +0200
@@ -38,7 +38,7 @@
 BuildRequires:  gpg-offline
 %endif
 Url:http://nmap.org/
-Version:6.45
+Version:6.46
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-6.45.tar.bz2 -> nmap-6.46.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-6.45.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-6.46.tar.bz2 differ: char 11, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2014-04-13 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2014-04-13 13:16:00

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2013-12-09 
07:08:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2014-04-13 
13:16:02.0 +0200
@@ -1,0 +2,68 @@
+Sat Apr 12 19:42:34 UTC 2014 - andreas.stie...@gmx.de
+
+- Nmap 6.45
+- NSE:
+  * Add ssl-heartbleed script to detect the Heartbleed OpenSSL bug
+  * Fixed an error-handling bug in socks-open-proxy that caused it
+to fail when scanning a SOCKS4-only proxy
+  * Improved ntp-info script to handle underscores in returned
+data
+  * Add quake1-info script for retrieving server and player
+information from Quake 1 game servers
+  * Add unicode library for decoding and encoding UTF-8, UTF-16,
+CP437 and other character sets to Unicode code points. Scripts
+that previously just added or skipped nulls in UTF-16 data can
+use this to support non-ASCII characters
+  * When doing a ping scan (-sn), the --open option will prevent down
+hosts from being shown when -v is specified. This aligns with
+similar output for othe rscan types
+  * Add http-ntlm-info script for getting server information from
+Web servers that require NTLM authentication
+  * Added tls library for functions related to SSLv3 and TLS
+messages. Existing ssl-enum-ciphers, ssl-date, and
+tls-nextprotoneg scripts were updated to use this library
+  * Add sstp-discover script to discover Microsoft's Secure Socket
+Tunnelling Protocol
+  * Added unittest library and NSE script for adding unit tests to
+NSE libraries
+  * Added allseeingeye-info script
+  * Add freelancer-info script
+  * Add http-server-header script
+  * Add rfc868-time script
+  * Add weblogic-t3-info script
+  * Removed a fixed value (28428) which was being set for the Request
+ID in the snmpWalk library function
+  * Add http-iis-short-name-brute script
+  * Add http-dlink-backdoor
+  * Made telnet-brute support multiple parallel guessing threads
+  * Made the table returned by ssh1.fetch_host_key contain a "key"
+element, like that of ssh2.fetch_host_key
+  * Update dns-cache-snoop script to use a new list of top 50
+domains rather than a 2010 list
+  * Added the qconn-exec script
+- Ncat: 
+  * Added support for socks5 and corresponding regression tests.
+  * Fixed compilation when --without-liblua is specified
+  * Added NCAT_PROTO, NCAT_REMOTE_ADDR, NCAT_REMOTE_PORT,
+NCAT_LOCAL_ADDR and NCAT_LOCAL_PORT environment variables being
+set in all --*-exec child processes.
+- Nsock:
+  * Handle timers and timeouts via a priority queue
+- Various:
+  * Added TCP support to dns.lua
+  * Added safe fd_set operations. This makes nmap fail gracefully
+instead of crashing when the number of file descriptors grows
+over FD_SETSIZE
+  * Updated bundled liblua from 5.2.2 to 5.2.3 (bugfix release)
+  * Added version detection signatures and probes for a bunch of
+Android remote mouse/keyboard servers, including AndroMouse,
+AirHID, Wifi-mouse, and RemoteMouse.
+  * Fixed a bug with UDP checksum calculation
+  * Idle scan now supports IPv6
+  * The ICMP ID of ICMP probes is now matched against the sent ICMP
+ID to reduce the chance of false matches
+- Zenmap:
+  * Fixed a crash that would happen when you entered a search
+term starting with a colon
+
+---

Old:

  nmap-6.40.tar.bz2
  nmap-6.40.tar.bz2.asc

New:

  nmap-6.45.tar.bz2
  nmap-6.45.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.7iCF2D/_old  2014-04-13 13:16:03.0 +0200
+++ /var/tmp/diff_new_pack.7iCF2D/_new  2014-04-13 13:16:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -38,7 +38,7 @@
 BuildRequires:  gpg-offline
 %endif
 Url:http://nmap.org/
-Version:6.40
+Version:6.45
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
@@ -264,6 +264,7 @@
 %defattr(-,root,root)
 %{_bindir}/ndiff
 %{_mandir}/man1/ndiff.1.gz
+%{python_sitelib}/ndiff.*
 
 %files -n nping
 %defattr(-,root,root)

++ nmap-6.40.tar.bz2 -> nmap-6.45.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-6.40.tar.

commit nmap for openSUSE:Factory

2013-12-08 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2013-12-09 07:08:48

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2013-09-04 
14:02:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2013-12-09 
07:08:49.0 +0100
@@ -1,0 +2,5 @@
+Fri Dec  6 20:19:45 UTC 2013 - andreas.stie...@gmx.de
+
+- add missing python-gtk dependency for zenmap [bnc#752158]
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.QJviVa/_old  2013-12-09 07:08:50.0 +0100
+++ /var/tmp/diff_new_pack.QJviVa/_new  2013-12-09 07:08:50.0 +0100
@@ -76,6 +76,7 @@
 Obsoletes:  %name-gtk
 Provides:   %name-gtk = %{version}-%{release}
 %py_requires
+Requires:   python-gtk
 
 %description -n zenmap
 zenmap is a graphical front-end for the nmap network scanner


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2013-09-04 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2013-09-04 14:02:44

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2013-03-21 
22:10:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2013-09-04 
14:02:46.0 +0200
@@ -1,0 +2,113 @@
+Mon Aug 19 23:01:55 UTC 2013 - andreas.stie...@gmx.de
+
+- update to 6.40
+- [Ncat] Added --lua-exec
+- new and updated IPv4 OS fingerprints
+- new and updated IPv6 OS fingerprints
+- new and updated service/version fingerprints
+- [Nsock] Added initial proxy support to Nsock
+- [NSE] Added 14 NSE scripts
+- Updated the Nmap license terms, still GPL-2.0+ 
+  https://svn.nmap.org/nmap/COPYING.
+- [NSE] fix possibility of writing arbitrary file to client system 
+  when using the http-domino-enum-passwords script with the 
+  domino-enum-passwords.idpath parameter against a malicious server
+- Unicast CIDR-style IPv6 range scanning is now supported
+- It's now possible to mix IPv4 range notation with CIDR netmasks in 
+  target specifications.
+- Timeout script-args are now standardized to use the timespec that
+  Nmap's command-line arguments take (5s, 5000ms, 1h, etc.)
+- Nmap may now partially rearrange its target list for more efficient
+  host groups.
+- [Ncat] The -i option (idle timeout) now works in listen mode as well as
+  connect mode.
+- [Ncat] Ncat now support chained certificates with the --ssl-cert
+  option.
+- [Nping] Nping now checks for a matching ICMP ID on echo replies
+- [NSE] The ipOps.isPrivate library now considers the deprecated 
+  site-local prefix fec0::/10 to be private.
+- Nmap's routing table is now sorted first by netmask, then by metric.
+- Routes are now sorted to prefer those with a lower metric. 
+- Fixed a byte-ordering problem on little-endian architectures when doing
+  idle scan with a zombie that uses broken ID increments. 
+- Stop parsing TCP options after reaching EOL in libnetutil.
+- [NSE] The dns-ip6-arpa-scan script now optionally accepts "/" syntax for
+  a network mask
+- Fixed our NSEDoc system for UTF-8 names
+- UDP protocol payloads were added for detecting the Murmer service 
+- [NSE] Added http-phpmyadmin-dir-traversal
+- Fixed address matching for SCTP (-PY) ping
+- Removed some non-ANSI-C strftime format strings ("%F") and
+  locale-dependent formats ("%c") from NSE scripts and libraries.
+- [Zenmap] Improved internationalization support
+- [Zenmap] Fixed internationalization files
+- [NSE] Updated the included Liblua from version 5.2.1 to 5.2.2.
+- [Nsock] Added a minimal regression test suite for Nsock.
+- [NSE] Updated the redis-brute and redis-info scripts to work against
+  the latest versions of redis server
+- [Ncat] Fixed errors in connecting to IPv6 proxies.
+- [NSE] Updated hostmap-bfk to work with the latest version of their website
+- [NSE] Added XML structured output support to:
+  + xmpp-info, irc-info, sslv2, address-info
+  + hostmap-bfk, hostmap-robtex, hostmap-ip2hosts.
+  + http-git.nse.
+- Added new service probes for:
+  + Erlang distribution nodes
+  + Minecraft servers.
+  + Hazelcast data grid.
+- [NSE] Rewrote telnet-brute for better compatibility with a variety of
+  telnet servers.
+- Fixed a regression that changed the number of delimiters in machine
+  output.
+- Fixed a regression in broadcast-dropbox-listener which prevented it from
+  producing output.
+- Handle ICMP type 11 (Time Exceeded) responses to port scan probes.
+- Add new decoders (BROWSER, DHCP6 and LLMNR) to broadcast-listener and
+  changed output of some of the decoders slightly.
+- Namespace the pipes used to communicate with subprocesses by PID, to avoid
+  multiple instances of Ncat from interfering with each other. 
+- [NSE] Changed ip-geolocation-geoplugin to use the web service's new output
+  format.
+- Limited the number of open sockets in ultra_scan to FD_SETSIZE.
+- Fixed a bug that prevented Nmap from finding any interfaces when one of
+  them had the type ARP_HDR_APPLETALK
+- [Ncat] Ncat now keeps running in connect mode after receiving EOF from the
+  remote socket, unless --recv-only is in effect.
+- Packet trace of ICMP packets now include the ICMP ID and sequence number
+  by default.
+- [NSE] Fixed various NSEDoc bugs
+- [Zenmap] Zenmap now understands the NMAP_PRIVILEGED and NMAP_UNPRIVILEGED
+  environment variables.
+- Added an ncat_assert macro.
+- Added nmap-fo.xsl to convert Nmap XML into XSL-FO, which can be converted 
+  into PDF using tools suck as Apache FOP.
+- Increased the number of slack file descriptors not used during connect
+  scan.
+- Changed the --webxml XSL stylesheet to point to the new location of
+  nmap.xsl in the n

commit nmap for openSUSE:Factory

2013-03-21 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2013-03-21 22:10:44

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2012-12-10 
17:17:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2013-03-21 
22:10:45.0 +0100
@@ -1,0 +2,5 @@
+Sun Mar 10 22:33:12 UTC 2013 - andreas.stie...@gmx.de
+
+- add verification of gpg signatures of source tarballs
+
+---

New:

  nmap-6.25.tar.bz2.asc
  nmap.keyring



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.ZKeehj/_old  2013-03-21 22:10:47.0 +0100
+++ /var/tmp/diff_new_pack.ZKeehj/_new  2013-03-21 22:10:47.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,6 +34,9 @@
 %if %with_system_lua 
 BuildRequires:  pkgconfig(lua) >= 5.2
 %endif
+%if 0%{?suse_version} >= 1230
+BuildRequires:  gpg-offline
+%endif
 Url:http://nmap.org/
 Version:6.25
 Release:0
@@ -42,6 +45,9 @@
 Group:  Productivity/Networking/Diagnostic
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: http://nmap.org/dist/nmap-%{version}.tar.bz2
+# https://svn.nmap.org/nmap/docs/nmap_gpgkeys.txt
+Source1:%{name}.keyring
+Source2:http://nmap.org/dist/sigs/%{name}-%{version}.tar.bz2.asc
 Patch:  nmap-6.00-libpcap-filter.diff
 Patch1: nmap-4.00-noreturn.diff
 Patch2: nmap-5.61-desktop_files.patch
@@ -140,6 +146,7 @@
 
 Fyodor 
 %prep
+%{?gpg_verify: %gpg_verify %{S:2}}
 %setup -q
 %patch -p0
 %patch1 -p0

++ nmap.keyring ++
GPG detached signatures and MD5/SHA-1 hashes for each Nmap release are
available from http://nmap.org/dist/sigs/?C=M;O=D .  The
releases are signed by the Nmap project GPG key (KeyId 6B9355D0).
Some messages to Nmap mailing lists may be signed by Nmap author and
maintainer Fyodor.  Fyodor's KeyID is 33599B5F.  Those two keys and
their fingerprints are reproduced below.  The latest version of this
file is always available at
http://nmap.org/data/nmap_gpgkeys.txt .

To verify a file with GPG, obtain and import the keys with a command
such as "gpg --import nmap_gpgkeys.txt" and then verify the obtained
files as shown in this example:

 > gpg --verify nmap-3.81.tar.bz2.gpg.txt nmap-3.81.tar.bz2
 gpg: Signature made Sat 23 Apr 2005 11:34:32 PM PDT using DSA key ID 6B9355D0
 gpg: Good signature from "Nmap Project Signing Key (http://www.insecure.org/)"

Here are the GPG keys for the Nmap Project and Fyodor:

pub   1024D/6B9355D0 2005-04-24
  Key fingerprint = 436D 66AB 9A79 8425 FDA0  E3F8 01AF 9F03 6B93 55D0
uid   Nmap Project Signing Key (http://www.insecure.org/)
sub   2048g/A50A6A94 2005-04-24

-BEGIN PGP PUBLIC KEY BLOCK-
Version: GnuPG v1.4.1 (GNU/Linux)

mQGiBEJrBfgRBADogo5DEoGsm2C3OC3NoKBQ0J7Ixp/cymuMeGQmDhqP6Vfmxmso
BGln4nhDr3WMDW76Q2p6dHTZEbWx3NAna8q3wa3PrPTVRcmEgEgUd8y086I33NqW
BV5Fz4bvPWtSGc/4MxXwac+XqrGY+iTkaO3sd4/eEKa/KkJlXpIGAbGbZwCgq9HS
bHctYmUWmvz1YXJmFlQvnTsD/RRyTlnQ/AOpq2XPYy5AlUzHMWAef2Dt+wXYKSjp
zvqVWtl8QigrWSOP3ia39v+rDUF/CHb1U8mmx9XzRpy9KgS99Wi4IUnBCYM/e/IP
K5ReAoNoPMjLmLU4cxYzOxF1yzuSFvhXiKVy/QW6Qo9AP9YdlhlxxXrJA+HrAcXb
UE/SBACsoJRsIEyzcfm7Y/KA11enEhxo2nVZ/HpJCq8RHcaXxWFaCglKlydNaw1S
vlZkLggRXQrig6aHgVva3WC+gSYMk+SPtzYNrjWiDE+v+DoEFdNEuO8DXScTMGmB
pmUtZNWGoK9ewo9kE/ccGDl6lmrxfC9x2nYFHlCvV/PJrbTbfLQzTm1hcCBQcm9q
ZWN0IFNpZ25pbmcgS2V5IChodHRwOi8vd3d3Lmluc2VjdXJlLm9yZy8piF4EExEC
AB4FAkJrBfgCGwMGCwkIBwMCAxUCAwMWAgECHgECF4AACgkQAa+fA2uTVdBGbACf
e4qpukKV23yZjlbjEzJeCN8Gyh4AniXrbP7M+ul6zzWTFBgB6heYjKT8iEYEEBEC
AAYFAkJrGVAACgkQGvbsUDNZm1+kXgCfbBGI8UxrwiKRbtgYHOUYd6u5qdwAnRFZ
ryKFEzkuQGBQWfd6ys6ygjgtuQINBEJrBfoQCADUNWhc7n68jANoWAWl38itVGqI
qZEEvchV3m/uslVD0BSn/KRSY9/cZbMTX2hV8eemlGV2suJW4jWB0cQXjZQap4OL
WmMexeFA+q1YE803k0X4XgzRuJXkLaX3isCJGbgFRF6IfWmK38/gXz4YVBQXFQXy
4M2Y/o2GBsq8cQVgRAZNTQvN5oh2u8WN0wANk+iKySKqBG3Twgh4BbTaoajidSFR
hv3xFPw6dQFTd3fYyDlMcOQQcAdzzlS6hTyZuZLOXLdWckilnlP2/orQ5wUs6nXd
QeWuxME56z2vwNNeufoLWqNUlR1/IyRAfownDuvdjxYeIgsDd4DP+jInCpPzAAMG
CACZ8ewQdpWJ/4CgC7OT865DurNIQH0udm/CSB0mb3v0IxuuXMJml2yMi2NkJh8X
KMaluTznz2x8kpPXgmhu+qosAi+YUbdbP+/ilY6+WqLVQewSr7GmxJy6EWW5s2+S
3V7yneiDQXBUBMr4WwjfOxX7m/+Io7RSLQaWNq82C2fSukqpootVgLV7CaVJMHvZ
iA+3AL32N1d

commit nmap for openSUSE:Factory

2012-12-10 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2012-12-10 17:17:12

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2012-12-03 
10:52:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2012-12-10 
17:17:14.0 +0100
@@ -1,0 +2,8 @@
+Sat Dec  8 13:42:44 UTC 2012 - andreas.stie...@gmx.de
+
+- run available unit tests
+- add nmap-ncat-fail-test-addrset.patch to make ncat tests effective
+- add nmap-ncat-skip-network-tests.patch to skip tests requiring
+  name resolution
+
+---

New:

  nmap-ncat-fail-test-addrset.patch
  nmap-ncat-skip-network-tests.patch



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.ocGWQE/_old  2012-12-10 17:17:15.0 +0100
+++ /var/tmp/diff_new_pack.ocGWQE/_new  2012-12-10 17:17:15.0 +0100
@@ -47,6 +47,8 @@
 Patch2: nmap-5.61-desktop_files.patch
 Patch3: nmap-4.75-nostrip.patch
 Patch5: su-to-zenmap.patch
+Patch6: nmap-ncat-fail-test-addrset.patch
+Patch7: nmap-ncat-skip-network-tests.patch
 
 %description
 Nmap is designed to allow system administrators and curious individuals
@@ -144,6 +146,8 @@
 %patch2 -p0
 %patch3 -p0
 %patch5 -p0
+%patch6 -p1
+%patch7 -p1
 
 #fix locale dir
 mv zenmap/share/zenmap/locale zenmap/share
@@ -187,6 +191,15 @@
 %fdupes -s %{buildroot}
 
 %check
+
+pushd ncat
+%__make check
+popd
+
+pushd libdnet-stripped
+%__make check
+popd
+
 # retrieve list of compiled in modules
 compiled_with=$("${RPM_BUILD_ROOT}%{_bindir}/nmap" -V | %__grep "Compiled 
with:" )
 # for the following tests, the leading space is relevant

++ nmap-ncat-fail-test-addrset.patch ++
From: Andreas Stieger 
Date: 2012-12-06 18:46:29 +
Subject: [PATCH] ncat - make check succeeds despite test failures
References: http://seclists.org/nmap-dev/2012/q4/373
Upstream: merged

For ncat, "make check" succeeds despite test failures. Patch corrects 
ncat/test/test-addrset.sh by exiting the script with a non-zero return value.

$ svn log -r30341:30350 https://svn.nmap.org/nmap/ncat/test/test-addrset.sh

r30341 | david | 2012-12-05 06:48:15 + (Wed, 05 Dec 2012) | 4 lines

Make test-addrset.sh exit with nonzero status if any tests fail.

Patch by Andreas Stieger.
http://seclists.org/nmap-dev/2012/q4/385

r30350 | dmiller | 2012-12-06 18:46:29 + (Thu, 06 Dec 2012) | 1 line

Change test-addrset.sh to be POSIX sh compliant


---
 ncat/test/test-addrset.sh |   26 +-
 1 file changed, 21 insertions(+), 5 deletions(-)

Index: nmap-6.25/ncat/test/test-addrset.sh
===
--- nmap-6.25.orig/ncat/test/test-addrset.sh2009-06-14 18:12:56.0 
+0100
+++ nmap-6.25/ncat/test/test-addrset.sh 2012-12-08 13:29:30.0 +
@@ -1,46 +1,56 @@
-#!/usr/bin/env bash
+#!/bin/sh
 
 # Automated tests for the addrset functions in ncat_hostmatch.c. This
 # program runs various addresses against different host specifications
 # and checks that the output is what is expected.
 
 ADDRSET=./addrset
+TESTS=0
+TEST_PASS=0
+TEST_FAIL=0
 
 # Takes as arguments a whitespace-separated list of host specifications
 # and a space-separated list of expected matching addresses. Tests hosts
 # are passed in stdin.
-function test_addrset() {
+test_addrset() {
specs=$1
expected=$2
result=$($ADDRSET $specs)
ret=$?
# Change newlines to spaces.
result=$(echo $result)
+   TESTS=$((TESTS + 1));
if [ "$ret" != "0" ]; then
echo "FAIL $ADDRSET returned $ret."
+   TEST_FAIL=$((TEST_FAIL + 1))
elif [ "$result" != "$expected" ]; then
echo "FAIL \"$result\" !="
echo " \"$expected\"."
+   TEST_FAIL=$((TEST_FAIL + 1))
else
echo "PASS $specs"
+   TEST_PASS=$((TEST_PASS + 1))
fi
 }
 
 # Takes as an argument a host specification with invalid syntax. The
 # test passes if addrset returns with a non-zero exit code.
-function expect_fail() {
+expect_fail() {
specs=$1
$ADDRSET $specs < /dev/null 2> /dev/null
ret=$?
-   if [ "$ret" == "0" ]; then
+   TESTS=$((TESTS + 1))
+   if [ "$re

commit nmap for openSUSE:Factory

2012-12-03 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2012-12-03 10:52:28

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2012-07-18 
17:35:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2012-12-03 
10:52:38.0 +0100
@@ -1,0 +2,47 @@
+Sun Dec  2 14:09:50 UTC 2012 - andreas.stie...@gmx.de
+
+- update to 6.25
+  + add 373 IPv4 OS fingerprints and improve existing fingerprints
+  + add more than 400 service/version detection fingerprints
+  + integrate latest IPv6 OS submissions and corrections
+  + Enabled support for IPv6 traceroute using UDP, SCTP, and IPProto
+(Next Header) probes.
+  + Scripts can now return a structured name-value table so that results
+are query-able from XML output. Scripts can return a string as
+before, or a table, or a table and a string. In this last case, the
+table will go to XML output and the string will go to screen output.
+  + Ncat: Added support for Unix domain sockets. The new -U and
+--unixsock options activate this mode.
+  + removal of Windows dependencies reduces size of source tarball
+  + Replaced old RPC grinder with NSE-based implementation
+  + Updated Nmap Scripting Engine to use Lua 5.2
+  + Added 85 NSE scripts
+  + Added 12 new protocol libraries: 
+* ajp (Apache JServ Protocol)
+* base32 (Base32 encoding/decoding - RFC 4648)
+* bjnp (Canon BJNP printer/scanner discovery protocol)
+* cassandra (Cassandra database protocol)
+* eigrp (Cisco Enhanced Interior Gateway Routing Protocol)
+* gps (Global Positioning System - does GPRMC NMEA decoding)
+* ipp (CUPS Internet Printing Protocol)
+* isns (Internet Storage Name Service)
+* jdwp (Java Debug Wire Protocol)
+* mobileme (a service for managing Apple/Mac devices)
+* ospf (Open Shortest Path First routing protocol)
+* rdp (Remote Desktop Protocol)
+  + added more Common Platform Enumeration (CPE) identifiers 
+  + Scans that use OS sockets (including TCP connect scan, version
+detection, and script scan) now use the SO_BINDTODEVICE sockopt on
+Linux, so that the -e (select network device) option is
+honored.
+  + [Zenmap] Host filters can now do negative matching, for example you
+ can use "os:!linux" to match hosts NOT detected as Linux.
+  + further minor improvements and bug fixes as listed in 
+ http://nmap.org/changelog.html
+- for openSUSE releases where lua 5.2 is available, build with that
+  library, otherwise use the library that comes with the sources
+- add tests for the correct system or included libraries
+- refresh nmap-4.75-nostrip.patch
+- refresh su-to-zenmap.patch
+
+---

Old:

  nmap-6.01.tar.bz2

New:

  nmap-6.25.tar.bz2



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.NCLSWf/_old  2012-12-03 10:52:40.0 +0100
+++ /var/tmp/diff_new_pack.NCLSWf/_new  2012-12-03 10:52:40.0 +0100
@@ -19,23 +19,23 @@
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
 
+%define with_system_lua 0%{?suse_version} >= 1220
+
 Name:   nmap
+BuildRequires:  dos2unix
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  gtk2-devel
 BuildRequires:  libpcap-devel
-%if 0%{?suse_version} > 1210
-BuildRequires:  lua51-devel
-%else
-BuildRequires:  lua-devel
-%endif
-BuildRequires:  dos2unix
-BuildRequires:  fdupes
 BuildRequires:  openssl-devel
 BuildRequires:  pcre-devel
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
-Url:http://www.insecure.org/nmap/
-Version:6.01
+%if %with_system_lua 
+BuildRequires:  pkgconfig(lua) >= 5.2
+%endif
+Url:http://nmap.org/
+Version:6.25
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
@@ -164,6 +164,11 @@
 export CXXFLAGS="%optflags -DOPENSSL_LOAD_CONF"
 %configure --with-libpcap=%{_usr} \
--with-libdnet=included \
+%if %with_system_lua
+   --with-liblua=%{_usr} \
+%else
+   --with-liblua=included \
+%endif
--with-libpcre=%{_usr}
 
 %__make %{?jobs:-j%jobs}
@@ -181,6 +186,25 @@
 
 %fdupes -s %{buildroot}
 
+%check
+# retrieve list of compiled in modules
+compiled_with=$("${RPM_BUILD_ROOT}%{_bindir}/nmap" -V | %__grep "Compiled 
with:

commit nmap for openSUSE:Factory

2012-07-18 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2012-07-18 17:35:16

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2012-06-26 
17:08:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2012-07-18 
17:35:41.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul 16 21:46:27 UTC 2012 - andreas.stie...@gmx.de
+
+- update manpages glob to fix Factory build
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.Iz2Z59/_old  2012-07-18 17:35:43.0 +0200
+++ /var/tmp/diff_new_pack.Iz2Z59/_new  2012-07-18 17:35:43.0 +0200
@@ -189,22 +189,10 @@
 %doc COPYING* CHANGELOG HACKING
 %doc docs/README
 %doc docs/nmap.usage.txt
-%dir %{_mandir}/hr
-%dir %{_mandir}/hr/man1
-%dir %{_mandir}/hu
-%dir %{_mandir}/hu/man1
-%dir %{_mandir}/pl
-%dir %{_mandir}/pl/man1
-%dir %{_mandir}/pt
-%dir %{_mandir}/pt/man1
-%dir %{_mandir}/ro
-%dir %{_mandir}/ro/man1
-%dir %{_mandir}/ru
-%dir %{_mandir}/ru/man1
-%dir %{_mandir}/sk
-%dir %{_mandir}/sk/man1
-%dir %{_mandir}/zh_CN
-%dir %{_mandir}/zh_CN/man1
+%dir %{_mandir}/??
+%dir %{_mandir}/??/man1
+%dir %{_mandir}/??_??
+%dir %{_mandir}/??_??/man1
 %{_mandir}/man1/nmap.1.gz
 %{_mandir}/*/man1/*
 %{_bindir}/nmap

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2012-06-26 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2012-06-26 17:08:48

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2012-05-22 
08:17:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2012-06-26 
17:08:50.0 +0200
@@ -1,0 +2,8 @@
+Sat Jun 23 08:56:35 UTC 2012 - andreas.stie...@gmx.de
+
+- update to upstream 6.0.1
+  * fix a zenmap a crash that happened when activating the host filter.
+  * fix finding network interfaces if one of them is in monitor mode
+  * fixx greppable output of hosts that time-out
+
+---

Old:

  nmap-6.00.tar.bz2

New:

  nmap-6.01.tar.bz2



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.HHVcNt/_old  2012-06-26 17:08:54.0 +0200
+++ /var/tmp/diff_new_pack.HHVcNt/_new  2012-06-26 17:08:54.0 +0200
@@ -35,7 +35,7 @@
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
 Url:http://www.insecure.org/nmap/
-Version:6.00
+Version:6.01
 Release:0
 Summary:Portscanner
 License:GPL-2.0+

++ nmap-6.00.tar.bz2 -> nmap-6.01.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-6.00.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-6.01.tar.bz2 differ: char 11, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2012-05-21 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2012-05-22 08:17:00

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2012-04-17 
07:47:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2012-05-22 
08:17:02.0 +0200
@@ -1,0 +2,14 @@
+Mon May 21 20:27:08 UTC 2012 - andreas.stie...@gmx.de
+
+- update to upstream 6.00
+  * enhanced Nmap Scripting Engine
+  * Better Web Scanning
+  * Full IPv6 Support
+  * New NPing Tool
+  * Better Zenmap GUI & results viewer
+  * Faster scans
+  * for a full list of changes see http://nmap.org/6/#changes and
+http://nmap.org/changelog.html
+- refresh nmap-4.00-libpcap-filter.diff
+
+---

Old:

  nmap-4.00-libpcap-filter.diff
  nmap-5.61TEST5.tar.bz2

New:

  nmap-6.00-libpcap-filter.diff
  nmap-6.00.tar.bz2



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.3gzL4e/_old  2012-05-22 08:17:05.0 +0200
+++ /var/tmp/diff_new_pack.3gzL4e/_new  2012-05-22 08:17:05.0 +0200
@@ -18,7 +18,6 @@
 
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
-%define nmap_extra_ver TEST5
 
 Name:   nmap
 BuildRequires:  gcc-c++
@@ -36,14 +35,14 @@
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
 Url:http://www.insecure.org/nmap/
-Version:5.61
+Version:6.00
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
 Group:  Productivity/Networking/Diagnostic
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source: http://nmap.org/dist/nmap-%{version}%{nmap_extra_ver}.tar.bz2
-Patch:  nmap-4.00-libpcap-filter.diff
+Source: http://nmap.org/dist/nmap-%{version}.tar.bz2
+Patch:  nmap-6.00-libpcap-filter.diff
 Patch1: nmap-4.00-noreturn.diff
 Patch2: nmap-5.61-desktop_files.patch
 Patch3: nmap-4.75-nostrip.patch
@@ -139,7 +138,7 @@
 
 Fyodor 
 %prep
-%setup -q -n %{name}-%{version}%{nmap_extra_ver}
+%setup -q
 %patch -p0
 %patch1 -p0
 %patch2 -p0
@@ -216,7 +215,7 @@
 %{_bindir}/xnmap
 %{_bindir}/zenmap
 %{_bindir}/nmapfe
-%{python_sitelib}/zenmap-%{version}%{nmap_extra_ver}-py%{py_ver}.egg-info
+%{python_sitelib}/zenmap-%{version}-py%{py_ver}.egg-info
 %{python_sitelib}/zenmapCore
 %{python_sitelib}/zenmapGUI
 %{python_sitelib}/radialnet

++ nmap-4.00-libpcap-filter.diff -> nmap-6.00-libpcap-filter.diff ++
--- /work/SRC/openSUSE:Factory/nmap/nmap-4.00-libpcap-filter.diff   
2012-03-27 08:57:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap-6.00-libpcap-filter.diff  
2012-05-22 08:17:02.0 +0200
@@ -1,8 +1,8 @@
 Index: libpcap/pcap-bpf.c
 ===
 libpcap/pcap-bpf.c.orig2010-04-21 05:39:45.0 +0100
-+++ libpcap/pcap-bpf.c 2012-03-26 22:12:12.0 +0100
-@@ -489,7 +489,7 @@ bpf_open(pcap_t *p)
+--- libpcap/pcap-bpf.c.orig2012-04-10 04:37:22.0 +0100
 libpcap/pcap-bpf.c 2012-05-21 21:25:27.0 +0100
+@@ -483,7 +483,7 @@ bpf_open(pcap_t *p)
fd = open(device, O_RDWR);
if (fd == -1 && errno == EACCES)
fd = open(device, O_RDONLY);
@@ -13,9 +13,9 @@
 * XXX better message for all minors used
 Index: libpcap/pcap-linux.c
 ===
 libpcap/pcap-linux.c.orig  2010-09-22 10:41:06.0 +0100
-+++ libpcap/pcap-linux.c   2012-03-26 22:12:12.0 +0100
-@@ -2233,8 +2233,30 @@ pcap_setfilter_linux_common(pcap_t *hand
+--- libpcap/pcap-linux.c.orig  2012-04-10 04:37:22.0 +0100
 libpcap/pcap-linux.c   2012-05-21 21:25:27.0 +0100
+@@ -2424,8 +2424,30 @@ pcap_setfilter_linux_common(pcap_t *hand
if (can_filter_in_kernel) {
if ((err = set_kernel_filter(handle, &fcode)) == 0)
{

++ nmap-5.61TEST5.tar.bz2 -> nmap-6.00.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-5.61TEST5.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-6.00.tar.bz2 differ: char 11, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2012-04-16 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2012-04-17 07:47:15

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2012-03-27 
08:57:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2012-04-17 
07:47:23.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 27 21:36:17 UTC 2012 - andreas.stie...@gmx.de
+
+- as nmap is built with the inluded and stripped nmap-libdnet-1.12,
+  remove system libdnet as build requirement
+
+---



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.6eP3w6/_old  2012-04-17 07:47:24.0 +0200
+++ /var/tmp/diff_new_pack.6eP3w6/_new  2012-04-17 07:47:24.0 +0200
@@ -23,7 +23,6 @@
 Name:   nmap
 BuildRequires:  gcc-c++
 BuildRequires:  gtk2-devel
-BuildRequires:  libdnet-devel
 BuildRequires:  libpcap-devel
 %if 0%{?suse_version} > 1210
 BuildRequires:  lua51-devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2012-03-26 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2012-03-27 08:57:11

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vdziewie...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2011-10-25 
16:29:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2012-03-27 
08:57:13.0 +0200
@@ -1,0 +2,17 @@
+Mon Mar 26 21:22:40 UTC 2012 - andreas.stie...@gmx.de
+
+- Update to nmap-5.61TEST5
+- refresh nmap-4.00-libpcap-filter.diff for moved source lines
+- refresh nmap-4.00-noreturn.diff for moved source lines
+- refresh nmap-4.75-nostrip.patch for moved source lines
+- update nmap-5.00-desktop_files.patch 
+  to nmap-5.61-desktop_files.patch for change source
+- update su-to-zenmap.patch for moved source lines
+
+---
+Mon Mar 26 19:16:15 UTC 2012 - dims...@opensuse.org
+
+- Conditionally change lua-devel BuildRequires to lua51-devel on
+  openSUSE > 12.1. The code is not yet ready for lua 5.2.
+
+---

Old:

  nmap-5.00-desktop_files.patch
  nmap-5.61TEST2.tar.bz2

New:

  nmap-5.61-desktop_files.patch
  nmap-5.61TEST5.tar.bz2



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.ikokMH/_old  2012-03-27 08:57:15.0 +0200
+++ /var/tmp/diff_new_pack.ikokMH/_new  2012-03-27 08:57:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package nmap
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,36 +15,38 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
-%define nmap_extra_ver TEST2
+%define nmap_extra_ver TEST5
 
 Name:   nmap
 BuildRequires:  gcc-c++
 BuildRequires:  gtk2-devel
 BuildRequires:  libdnet-devel
 BuildRequires:  libpcap-devel
+%if 0%{?suse_version} > 1210
+BuildRequires:  lua51-devel
+%else
 BuildRequires:  lua-devel
+%endif
+BuildRequires:  dos2unix
+BuildRequires:  fdupes
 BuildRequires:  openssl-devel
 BuildRequires:  pcre-devel
 BuildRequires:  python-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  fdupes
-BuildRequires:  dos2unix
 Url:http://www.insecure.org/nmap/
-License:GPL-2.0+
-Group:  Productivity/Networking/Diagnostic
-AutoReqProv:on
 Version:5.61
-Release:3
+Release:0
 Summary:Portscanner
+License:GPL-2.0+
+Group:  Productivity/Networking/Diagnostic
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source: http://nmap.org/dist/nmap-%{version}%{nmap_extra_ver}.tar.bz2
 Patch:  nmap-4.00-libpcap-filter.diff
 Patch1: nmap-4.00-noreturn.diff
-Patch2: nmap-5.00-desktop_files.patch
+Patch2: nmap-5.61-desktop_files.patch
 Patch3: nmap-4.75-nostrip.patch
 Patch5: su-to-zenmap.patch
 
@@ -64,7 +66,6 @@
 Fyodor 
 
 %package -n zenmap
-License:GPL-2.0+
 Summary:A Graphical Front-End for Nmap
 Group:  Productivity/Networking/Diagnostic
 Requires:   %name = %version
@@ -83,7 +84,6 @@
 Fyodor 
 
 %package -n ncat
-License:GPL-2.0+
 Summary:Network Tool to concatenate and redirect Sockets
 Group:  Productivity/Networking/Diagnostic
 
@@ -111,7 +111,6 @@
 Fyodor 
 
 %package -n ndiff
-License:GPL-2.0+
 Summary:Compare Results of Nmap Scans
 Group:  Productivity/Networking/Diagnostic
 %py_requires
@@ -129,7 +128,6 @@
 Fyodor 
 
 %package -n nping
-License:GPL-2.0+
 Summary:Compare Results of Nmap Scans
 Group:  Productivity/Networking/Diagnostic
 
@@ -143,8 +141,8 @@
 Fyodor 
 %prep
 %setup -q -n %{name}-%{version}%{nmap_extra_ver}
-%patch
-%patch1 -p1
+%patch -p0
+%patch1 -p0
 %patch2 -p0
 %patch3 -p0
 %patch5 -p0

++ nmap-4.00-libpcap-filter.diff ++
--- /var/tmp/diff_new_pack.ikokMH/_old  2012-03-27 08:57:15.0 +0200
+++ /var/tmp/diff_new_pack.ikokMH/_new  2012-03-27 08:57:15.0 +0200
@@ -1,8 +1,8 @@
 Index: libpcap/pcap-bpf.c
 ==

commit nmap for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2011-12-06 18:32:14

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vci...@suse.com"

Changes:




Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.CahhhN/_old  2011-12-06 18:53:32.0 +0100
+++ /var/tmp/diff_new_pack.CahhhN/_new  2011-12-06 18:53:32.0 +0100
@@ -34,7 +34,7 @@
 BuildRequires:  fdupes
 BuildRequires:  dos2unix
 Url:http://www.insecure.org/nmap/
-License:GPLv2+
+License:GPL-2.0+
 Group:  Productivity/Networking/Diagnostic
 AutoReqProv:on
 Version:5.61
@@ -64,7 +64,7 @@
 Fyodor 
 
 %package -n zenmap
-License:GPLv2+
+License:GPL-2.0+
 Summary:A Graphical Front-End for Nmap
 Group:  Productivity/Networking/Diagnostic
 Requires:   %name = %version
@@ -83,7 +83,7 @@
 Fyodor 
 
 %package -n ncat
-License:GPLv2+
+License:GPL-2.0+
 Summary:Network Tool to concatenate and redirect Sockets
 Group:  Productivity/Networking/Diagnostic
 
@@ -111,7 +111,7 @@
 Fyodor 
 
 %package -n ndiff
-License:GPLv2+
+License:GPL-2.0+
 Summary:Compare Results of Nmap Scans
 Group:  Productivity/Networking/Diagnostic
 %py_requires
@@ -129,7 +129,7 @@
 Fyodor 
 
 %package -n nping
-License:GPLv2+
+License:GPL-2.0+
 Summary:Compare Results of Nmap Scans
 Group:  Productivity/Networking/Diagnostic
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2011-10-25 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2011-10-25 16:29:00

Comparing /work/SRC/openSUSE:Factory/nmap (Old)
 and  /work/SRC/openSUSE:Factory/.nmap.new (New)


Package is "nmap", Maintainer is "vci...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2011-10-18 
14:33:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2011-10-25 
16:29:02.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct 22 17:43:10 UTC 2011 - eug...@nobilis.org.ru
+
+- Fixed a run Zenmap as sudo in KDE and GNOME
+
+---

Old:

  nmap-5.21-gnomesu.patch

New:

  su-to-zenmap.patch



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.Rg6dVG/_old  2011-10-25 16:29:06.0 +0200
+++ /var/tmp/diff_new_pack.Rg6dVG/_new  2011-10-25 16:29:06.0 +0200
@@ -46,7 +46,7 @@
 Patch1: nmap-4.00-noreturn.diff
 Patch2: nmap-5.00-desktop_files.patch
 Patch3: nmap-4.75-nostrip.patch
-Patch5: nmap-5.21-gnomesu.patch
+Patch5: su-to-zenmap.patch
 
 %description
 Nmap is designed to allow system administrators and curious individuals

++ su-to-zenmap.patch ++
--- zenmap/install_scripts/unix/su-to-zenmap.sh.orig2009-05-03 
08:33:50.0 +0400
+++ zenmap/install_scripts/unix/su-to-zenmap.sh 2011-10-03 20:15:53.0 
+0400
@@ -13,8 +13,8 @@
 $COMMAND
 else
 if test -z "$SU_TO_ROOT_X"; then
-  if which gksu >/dev/null 2>&1 ; then
-SU_TO_ROOT_X=gksu
+  if which gnomesu >/dev/null 2>&1 ; then
+SU_TO_ROOT_X=gnomesu
 if test "X$KDE_FULL_SESSION" = "Xtrue" ; then
   if which kdesu >/dev/null 2>&1 ; then
 SU_TO_ROOT_X=kdesu
@@ -39,8 +39,8 @@
   fi
 fi
 case $SU_TO_ROOT_X in
-  gksu) gksu -u "$PRIV" "$COMMAND";;
-  kdesu) kdesu -u "$PRIV" "$COMMAND";;
+  gnomesu) gnomesu -u "$PRIV" -c "$COMMAND";;
+  kdesu) kdesu -u "$PRIV" -c "$COMMAND";;
   kde4su) /usr/lib/kde4/libexec/kdesu -u "$PRIV" "$COMMAND";;
   ktsuss) ktsuss -u "$PRIV" "$COMMAND";;
   # As a last resort, open a new xterm use sudo/su
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit nmap for openSUSE:Factory

2011-10-18 Thread h_root

Hello community,

here is the log from the commit of package nmap for openSUSE:Factory
checked in at Tue Oct 18 14:23:30 CEST 2011.




--- openSUSE:Factory/nmap/nmap.changes  2011-09-23 02:14:44.0 +0200
+++ /mounts/work_src_done/STABLE/nmap/nmap.changes  2011-10-17 
04:43:26.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct 17 02:38:28 UTC 2011 - crrodrig...@opensuse.org
+
+- Update to nmap 5.61-xxx branch, changelog too long, see NEWS
+  for details.
+- Add a new subpackage "nping"
+- drop no-md2.patch already in upstream.
+
+---

calling whatdependson for head-i586


Old:

  nmap-5.21.tar.bz2
  no-md2.patch

New:

  nmap-5.61TEST2.tar.bz2



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.u6btVT/_old  2011-10-18 14:23:24.0 +0200
+++ /var/tmp/diff_new_pack.u6btVT/_new  2011-10-18 14:23:24.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package nmap (Version 5.21)
+# spec file for package nmap
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,6 +19,7 @@
 
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
+%define nmap_extra_ver TEST2
 
 Name:   nmap
 BuildRequires:  gcc-c++
@@ -36,16 +37,15 @@
 License:GPLv2+
 Group:  Productivity/Networking/Diagnostic
 AutoReqProv:on
-Version:5.21
+Version:5.61
 Release:3
 Summary:Portscanner
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source: http://nmap.org/dist/nmap-%{version}.tar.bz2
+Source: http://nmap.org/dist/nmap-%{version}%{nmap_extra_ver}.tar.bz2
 Patch:  nmap-4.00-libpcap-filter.diff
 Patch1: nmap-4.00-noreturn.diff
 Patch2: nmap-5.00-desktop_files.patch
 Patch3: nmap-4.75-nostrip.patch
-Patch4: no-md2.patch
 Patch5: nmap-5.21-gnomesu.patch
 
 %description
@@ -128,13 +128,25 @@
 
 Fyodor 
 
+%package -n nping
+License:GPLv2+
+Summary:Compare Results of Nmap Scans
+Group:  Productivity/Networking/Diagnostic
+
+%description -n nping
+Network packet generation tool / ping utility
+
+
+
+Authors:
+
+Fyodor 
 %prep
-%setup -q
+%setup -q -n %{name}-%{version}%{nmap_extra_ver}
 %patch
 %patch1 -p1
 %patch2 -p0
 %patch3 -p0
-%patch4 -p1
 %patch5 -p0
 
 #fix locale dir
@@ -152,9 +164,11 @@
 mv docs/man-xlate/nmap-zh.1 docs/man-xlate/nmap-zh_CN.1
 
 %build
-%configure --with-libpcap="%{_usr}" \
+export CFLAGS="%optflags -DOPENSSL_LOAD_CONF"
+export CXXFLAGS="%optflags -DOPENSSL_LOAD_CONF"
+%configure --with-libpcap=%{_usr} \
--with-libdnet=included \
-  --with-libpcre="%{_usr}"
+   --with-libpcre=%{_usr}
 
 %__make %{?jobs:-j%jobs}
 
@@ -205,7 +219,7 @@
 %{_bindir}/xnmap
 %{_bindir}/zenmap
 %{_bindir}/nmapfe
-%{python_sitelib}/zenmap-%{version}-py%{py_ver}.egg-info
+%{python_sitelib}/zenmap-%{version}%{nmap_extra_ver}-py%{py_ver}.egg-info
 %{python_sitelib}/zenmapCore
 %{python_sitelib}/zenmapGUI
 %{python_sitelib}/radialnet
@@ -227,4 +241,9 @@
 %{_bindir}/ndiff
 %{_mandir}/man1/ndiff.1.gz
 
+%files -n nping
+%defattr(-,root,root)
+%{_bindir}/nping
+%{_mandir}/man1/nping.1.gz
+
 %changelog

continue with "q"...



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org