From e82824b638814c33f94ec3b1ceaf99f31e11231f Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Thu, 28 Jan 2021 17:46:58 -0800 Subject: [PATCH] Fix various broken links in script documentation --- scripts/base/frameworks/cluster/main.zeek | 2 +- scripts/base/init-bare.zeek | 6 +++--- src/analyzer/protocol/netbios/functions.bif | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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. ##