dmiller
8490cad95d
Copy zlib DLL during staging. Avoid building nmap-update
2018-11-08 15:30:15 +00:00
dmiller
89a1714580
Fix Windows build for zlib update: use DLL instead of static
2018-11-08 14:51:33 +00:00
dmiller
d8c1d935f1
Move Npcap headers and lib stuff to nmap-mswin32-aux
2018-10-18 03:28:39 +00:00
dmiller
30db709755
Optimistically revert mutex that was needed with WinPcap. Npcap likely is unaffected.
2018-10-03 16:57:54 +00:00
fyodor
b3cece27e0
Update Npcap URL to new SSL version
2018-09-28 23:42:55 +00:00
dmiller
c95330ddf0
Avoid calling GetLastError twice.
2018-08-06 21:23:06 +00:00
dmiller
aaf5075c67
Move probespec to its own header to reduce includes of scan_engine.h
2018-07-13 18:18:28 +00:00
dmiller
b34a8e9aad
Bump version for Nmap 7.70SVN
2018-03-20 18:12:14 +00:00
dmiller
cadb66231f
Merge 7.70 release branch into trunk
2018-03-20 18:08:25 +00:00
fyodor
ff62300249
Bump copyright dates to 2018 and slightly improve wording (doesn't change meaning) of Nmap license header text
2018-01-28 21:18:17 +00:00
dmiller
3c91ad69b4
Add zlib includes and libs to Debug Windows build
2017-09-30 19:36:06 +00:00
dmiller
008edb6698
Fix Windows build: missing files, static zlib
2017-09-21 03:58:40 +00:00
dmiller
afe978dfb9
Add static zlib dependency in vcxproj needed for nse_zlib.cc
2017-09-21 01:43:08 +00:00
dmiller
b57d23f005
Add zlib binding for NSE. Fixes #532
2017-09-13 01:54:19 +00:00
dmiller
4a6fb1abe6
Bump version and regen docs for 7.60 release
2017-08-01 21:50:08 +00:00
evangel
0c142333bb
Merged gsoc-ssh branch. Closes #910
2017-06-29 21:27:35 +00:00
dmiller
bdd67aa68a
Update some error messages to refer to Npcap, not WinPcap.
2017-06-23 04:44:21 +00:00
dmiller
78f650b5e5
Bump version and regen docs post-7.50 release
2017-06-13 19:49:30 +00:00
dmiller
4725c98f5e
Backport some Windows build fixes from release branch
2017-06-11 20:01:02 +00:00
dmiller
9c7ea727a7
Update license terms for 2017
2017-06-07 12:32:38 +00:00
dmiller
5a5addb0ef
Sign the Nmap uninstaller
2017-01-08 03:30:45 +00:00
dmiller
eb0ba33394
Bump version and regen docs for 7.40 release
2016-12-21 00:16:03 +00:00
fyodor
4bd67aa2fb
Update the Nmap license/header text to reflect latest updates to docs/legal-notices.xml
2016-12-14 00:12:23 +00:00
dmiller
f61a82a1db
Bump version and regen docs for 7.31 maintenance release.
2016-10-21 20:12:59 +00:00
dmiller
417f6fdd7b
Add code signing and timestamps to windows build
2016-10-20 15:31:33 +00:00
dmiller
99efa84d86
Make sure Nmap.nsi gets regenerated when necessary and safely
2016-10-07 02:54:04 +00:00
dmiller
74c139be73
Bump version and regen docs for 7.30 release
2016-09-29 18:00:59 +00:00
dmiller
3a01e58f36
Avoid comparisons with uninitialized pcap_driver
2016-09-01 03:34:21 +00:00
dmiller
7b2f115d24
Use CloseServiceHandle instead of CloseHandle to avoid debugging crash
2016-09-01 03:34:20 +00:00
dmiller
f4c5c832a6
Remove dependency on pcap-int.h Fixes #426
...
Windows doesn't support selectable pcap fds, so instead of fiddling with
adapter read timeouts via PacketSetReadTimeout, we get an event handle
with pcap_get_event and WaitForSIngleObject. This means we don't need to
extract the adapter from the pcap_t, which is not part of the libpcap
API and was causing crashes switching between the libpcap versions used
by WinPcap and Npcap.
2016-08-25 18:41:03 +00:00
dmiller
b0fb9b5cdb
Switch to Npcap dev kit instead of Winpcap
2016-08-14 02:54:48 +00:00
dmiller
af13cef717
Upgrade to Npcap 0.08 (libpcap 1.8.0 headers for Windows)
2016-08-13 20:04:05 +00:00
dmiller
8c8e4a08c6
Be clearer about npf/npcap service status in Nping, just like r36061. Fixes #485
2016-08-01 04:43:33 +00:00
dmiller
3db511e83d
Consolidate warnings about npf service, avoid starting if --unprivileged. Fixes #465
2016-07-31 19:26:39 +00:00
dmiller
60dc6353b9
Bump version from 7.25BETA1 release, regen docs, merge CHANGELOG
2016-07-19 19:57:56 +00:00
batrick
7f5ec526fe
Merge branch 'nse-lua53'
...
Lua 5.3 adds several awesome features of particular interest to nmap including
bitwise operators and integers, a utf8 library, and standard binary pack/unpack
functions.
In addition to adding Lua 5.3, this branch changes:
o Complete removal of the NSE bit library (in C), It has been replaced with
a new Lua library wrapping Lua 5.3's bit-wise operators.
o Complete removal of the NSE bin library (in C). It has been replaced with a
new Lua library wrapping Lua 5.3's string.pack|unpack functions.
o The bin.pack "B" format specifier (which has never worked correctly) is
unimplemented. All scripts/libraries which use it have been updated. Most
usage of this option was to allow string based bit-wise operations which are no
longer necessary now that Lua 5.3 provides integers and bit-wise operators.
o The base32/base64 libraries have been reimplemented using Lua 5.3's new
bitwise operators. (This library was the main user of the bin.pack "B" format
specifier.)
o A new "bits" library has been added for common bit hacks. Currently only has
a reverse function.
Thanks to David Fifield, Daniel Miller, Jacek Wielemborek, and Paulino
Calderon for testing this branch.
2016-07-02 17:02:27 +00:00
dmiller
c55b7f6f92
Rework Windows bundling to include Npcap instead of Winpcap
2016-06-14 14:16:48 +00:00
dmiller
67fd101b01
Enable Nmap, Nping to use Npcap over Winpcap if available.
2016-06-14 14:16:46 +00:00
dmiller
50054e6ed7
Update platform toolset to remove XP compatibility
2016-06-04 02:46:11 +00:00
dmiller
6e33d6ac3c
Bump date in copyright headers
2016-04-04 15:38:44 +00:00
dmiller
a083db0cf9
Bump version for 7.12 release
2016-03-29 19:43:37 +00:00
dmiller
c97b56a1e9
sync CHANGELOG and bump version for 7.10SVN
2016-03-17 18:16:43 +00:00
dmiller
542f0afe65
Add DisplayVersion to Uninstall windows registry key. Closes #263
2016-02-03 19:19:37 +00:00
dmiller
8425c16203
Bump version and sync CHANGELOG with 7.01
2015-12-10 13:53:54 +00:00
dmiller
32b28a8726
Version bump for 7.00SVN
2015-11-19 20:49:20 +00:00
dmiller
37d517b32e
Use XP compatibility SDK, because users are complaining
2015-11-10 16:47:35 +00:00
dmiller
857a62ba8f
Add mutex protection to a couple more WinPcap calls
2015-11-10 16:47:33 +00:00
dmiller
40dc3c5830
Move global_structures.h back into nmap.h now that things are sorted out better
2015-07-02 03:09:29 +00:00
dmiller
a19e3e5c12
6.49SVN version bump
2015-06-07 15:53:49 +00:00
dmiller
68409b2226
Update copyright date to 2015
2015-06-03 13:01:29 +00:00