Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.5](backport #33172) x-pack/packetbeat: bump npcap version to v1.71 #33200

Merged
merged 1 commit into from
Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ https://github.com/elastic/beats/compare/v8.2.0\...main[Check the HEAD diff]

- Add option to allow sniffer to change device when default route changes. {issue}31905[31905] {pull}32681[32681]
- Add option to allow sniffing multiple interface devices. {issue}31905[31905] {pull}32933[32933]
- Bump Windows Npcap version to v1.71. {issue}33164[33164] {pull}33172[33172]

*Functionbeat*

Expand Down
2 changes: 1 addition & 1 deletion x-pack/packetbeat/LICENSE-Npcap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
NPCAP COPYRIGHT / END USER LICENSE AGREEMENT

Npcap is a Windows packet sniffing driver and library and is copyright
(c) 2013-2021 by Insecure.Com LLC ("The Nmap Project"). All rights
(c) 2013-2022 by Insecure.Com LLC ("The Nmap Project"). All rights
reserved.

Even though Npcap source code is publicly available for review, it is
Expand Down
2 changes: 1 addition & 1 deletion x-pack/packetbeat/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (
// the packetbeat executable. It is used to specify which npcap builder crossbuild
// image to use and the installer to obtain from the cloud store for testing.
const (
NpcapVersion = "1.60"
NpcapVersion = "1.71"
installer = "npcap-" + NpcapVersion + "-oem.exe"
)

Expand Down
2 changes: 1 addition & 1 deletion x-pack/packetbeat/npcap/installer/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--------------------------------------------------------------------------------
Dependency : Npcap (https://nmap.org/npcap/)
Version: 1.60
Version: 1.71
Licence type: Commercial
--------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion x-pack/packetbeat/tests/system/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
)

// Keep in sync with NpcapVersion in magefile.go.
const NpcapVersion = "1.60"
const NpcapVersion = "1.71"

func TestWindowsNpcapInstaller(t *testing.T) {
if runtime.GOOS != "windows" {
Expand Down