Merge remote-tracking branch 'origin/topic/christian/private_address_clarification'

* origin/topic/christian/private_address_clarification:
  Clarify membership in the Site::private_address_space prefix list. [skip ci]
This commit is contained in:
Tim Wojtulewicz 2024-05-07 10:26:40 -07:00
commit 29f5a49baf
3 changed files with 16 additions and 2 deletions

10
CHANGES
View file

@ -1,3 +1,13 @@
7.0.0-dev.224 | 2024-05-07 10:26:40 -0700
* Clarify membership in the Site::private_address_space prefix list. [skip ci] (Christian Kreibich, Corelight)
IANA's IPv6 special-purpose address registry now has members that technically
meet the definition of not being globally reachable, but don't imply operating
locally. An example: https://datatracker.ietf.org/doc/draft-ietf-6man-sids/06/
This change just explains that distinction.
7.0.0-dev.222 | 2024-05-07 10:25:55 -0700 7.0.0-dev.222 | 2024-05-07 10:25:55 -0700
* Avoid segfault when generating Zeekygen docs on Zeek-internal identifiers. (Christian Kreibich, Corelight) * Avoid segfault when generating Zeekygen docs on Zeek-internal identifiers. (Christian Kreibich, Corelight)

View file

@ -1 +1 @@
7.0.0-dev.222 7.0.0-dev.224

View file

@ -7,7 +7,11 @@ module Site;
export { export {
## A list of subnets that are considered private address space. ## A list of subnets that are considered private address space.
## ##
## By default, it has address blocks defined by IANA as not being routable over the Internet. ## By default, it has address blocks defined by IANA as not being
## routable over the Internet. Some address blocks are reserved for
## purposes inconsistent with the address architecture (such as
## 5f00::/16), making them neither clearly private nor routable. We do
## not include such blocks in this list.
## ##
## See the `IPv4 Special-Purpose Address Registry <https://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml>`_ ## See the `IPv4 Special-Purpose Address Registry <https://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml>`_
## and the `IPv6 Special-Purpose Address Registry <https://www.iana.org/assignments/iana-ipv6-special-registry/iana-ipv6-special-registry.xhtml>`_ ## and the `IPv6 Special-Purpose Address Registry <https://www.iana.org/assignments/iana-ipv6-special-registry/iana-ipv6-special-registry.xhtml>`_