mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
o Fixed a bug in the WinPcap installer: If the "Start the WinPcap
service 'NPF' at startup" box was unchecked and the "Start the WinPcap service 'NPF' now" box was checked, the second checkbox would be ignored (the service would not be started now). [Rob Nicholls]
This commit is contained in:
parent
ab3b1f409d
commit
26016007a2
2 changed files with 8 additions and 1 deletions
|
|
@ -108,6 +108,12 @@ o [NSE] Our http library no longer allows cached responses from a GET
|
|||
request to be returned for a HEAD request. This could cause problems
|
||||
with at least the http-enum script. [David]
|
||||
|
||||
o Fixed a bug in the WinPcap installer: If the "Start the WinPcap
|
||||
service 'NPF' at startup" box was unchecked and the "Start the
|
||||
WinPcap service 'NPF' now" box was checked, the second checkbox
|
||||
would be ignored (the service would not be started now). [Rob
|
||||
Nicholls]
|
||||
|
||||
Nmap 5.10BETA2 [2009-12-24]
|
||||
|
||||
o Added 7 new NSE scripts for a grand total of 79! You can learn about
|
||||
|
|
|
|||
|
|
@ -266,8 +266,9 @@ FunctionEnd
|
|||
|
||||
Function doOptions
|
||||
ReadINIStr $0 "$PLUGINSDIR\options.ini" "Field 1" "State"
|
||||
StrCmp $0 "0" do_options_end
|
||||
StrCmp $0 "0" do_options_next
|
||||
WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\NPF" "Start" 2
|
||||
do_options_next:
|
||||
ReadINIStr $0 "$PLUGINSDIR\options.ini" "Field 2" "State"
|
||||
StrCmp $0 "0" do_options_end
|
||||
nsExec::Exec "net start npf"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue