Copy docs into Zeek repo directly

This is based on commit 2731def9159247e6da8a3191783c89683363689c from the
zeek-docs repo.
This commit is contained in:
Tim Wojtulewicz 2025-09-15 15:52:18 -07:00
parent 83f1e74643
commit ded98cd373
1074 changed files with 169319 additions and 0 deletions

View file

@ -0,0 +1,14 @@
:tocdepth: 3
base/files/hash/__load__.zeek
=============================
:Imports: :doc:`base/files/hash/main.zeek </scripts/base/files/hash/main.zeek>`
Summary
~~~~~~~
Detailed Interface
~~~~~~~~~~~~~~~~~~

View file

@ -0,0 +1,13 @@
:orphan:
Package: base/files/hash
========================
Support for file hashes with the file analysis framework.
:doc:`/scripts/base/files/hash/__load__.zeek`
:doc:`/scripts/base/files/hash/main.zeek`

View file

@ -0,0 +1,33 @@
:tocdepth: 3
base/files/hash/main.zeek
=========================
.. zeek:namespace:: FileHash
:Namespace: FileHash
:Imports: :doc:`base/frameworks/files </scripts/base/frameworks/files/index>`
Summary
~~~~~~~
Redefinitions
#############
================================================================= ======================================================================
:zeek:type:`Files::Info`: :zeek:type:`record` :zeek:attr:`&redef`
:New Fields: :zeek:type:`Files::Info`
md5: :zeek:type:`string` :zeek:attr:`&log` :zeek:attr:`&optional`
An MD5 digest of the file contents.
sha1: :zeek:type:`string` :zeek:attr:`&log` :zeek:attr:`&optional`
A SHA1 digest of the file contents.
sha256: :zeek:type:`string` :zeek:attr:`&log` :zeek:attr:`&optional`
A SHA256 digest of the file contents.
================================================================= ======================================================================
Detailed Interface
~~~~~~~~~~~~~~~~~~