diff --git a/CHANGES b/CHANGES index f825e28f47..c7d58f9e0f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +4.1.0-dev.144 | 2021-01-29 09:54:01 -0700 + + * Fix various broken links in script documentation (Jon Siwek, Corelight) 4.1.0-dev.141 | 2021-01-25 12:32:48 -0800 diff --git a/VERSION b/VERSION index 2cb3b80c59..ab6af569dc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.0-dev.141 +4.1.0-dev.144 diff --git a/scripts/base/frameworks/cluster/main.zeek b/scripts/base/frameworks/cluster/main.zeek index 06476f276f..050499c1af 100644 --- a/scripts/base/frameworks/cluster/main.zeek +++ b/scripts/base/frameworks/cluster/main.zeek @@ -147,7 +147,7 @@ export { ## The node type doing all the actual traffic analysis. WORKER, ## A node acting as a traffic recorder using the - ## `Time Machine `_ + ## `Time Machine `_ ## software. TIME_MACHINE, }; diff --git a/scripts/base/init-bare.zeek b/scripts/base/init-bare.zeek index 34795cc2da..0d80b9a81b 100644 --- a/scripts/base/init-bare.zeek +++ b/scripts/base/init-bare.zeek @@ -5181,11 +5181,11 @@ export { ## NTP mode 7 message. Note that this is not defined in any RFC and is ## implementation dependent. We used the official implementation from the - ## `NTP official project `_. A mode 7 packet is used + ## `NTP official project `_. A mode 7 packet is used ## exchanging data between an NTP server and a client for purposes other ## than time synchronization, e.g. monitoring, statistics gathering and ## configuration. For details see the documentation from the `NTP official - ## project `_, code v. ntp-4.2.8p13, in include/ntp_request.h. + ## project `_, code v. ntp-4.2.8p13, in include/ntp_request.h. type NTP::Mode7Message: record { ## An implementation-specific code which specifies the ## operation to be (which has been) performed and/or the @@ -5246,7 +5246,7 @@ export { ## If mode 7, the fields for extra operations are here. ## Note that this is not defined in any RFC ## and is implementation dependent. We used the official implementation - ## from the `NTP official project `_. + ## from the `NTP official project `_. ## A mode 7 packet is used exchanging data between an NTP server ## and a client for purposes other than time synchronization, e.g. ## monitoring, statistics gathering and configuration. diff --git a/src/analyzer/protocol/netbios/functions.bif b/src/analyzer/protocol/netbios/functions.bif index 0a20c436d1..9c5cd2468e 100644 --- a/src/analyzer/protocol/netbios/functions.bif +++ b/src/analyzer/protocol/netbios/functions.bif @@ -2,7 +2,7 @@ #include "zeek/Reporter.h" %%} -## Decode a NetBIOS name. See http://support.microsoft.com/kb/194203. +## Decode a NetBIOS name. See https://jeffpar.github.io/kbarchive/kb/194/Q194203/. ## ## name: The encoded NetBIOS name, e.g., ``"FEEIEFCAEOEFFEECEJEPFDCAEOEBENEF"``. ## @@ -38,7 +38,7 @@ function decode_netbios_name%(name: string%): string %} ## Converts a NetBIOS name type to its corresponding numeric value. -## See http://support.microsoft.com/kb/163409. +## See https://en.wikipedia.org/wiki/NetBIOS#NetBIOS_Suffixes. ## ## name: The NetBIOS name type. ##