mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
Remove broxygen Sphinx integration
The broxygen-generated files now live in the git repo, have tests that check that they are up-to-date, and a script to re-generate them on-demand.
This commit is contained in:
parent
9e5e9d04b7
commit
7e9d48f532
549 changed files with 89909 additions and 100 deletions
14
doc/scripts/base/protocols/ntlm/__load__.bro.rst
Normal file
14
doc/scripts/base/protocols/ntlm/__load__.bro.rst
Normal file
|
@ -0,0 +1,14 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/protocols/ntlm/__load__.bro
|
||||
================================
|
||||
|
||||
|
||||
:Imports: :doc:`base/protocols/ntlm/main.bro </scripts/base/protocols/ntlm/main.bro>`
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
13
doc/scripts/base/protocols/ntlm/index.rst
Normal file
13
doc/scripts/base/protocols/ntlm/index.rst
Normal file
|
@ -0,0 +1,13 @@
|
|||
:orphan:
|
||||
|
||||
Package: base/protocols/ntlm
|
||||
============================
|
||||
|
||||
Support for NT LAN Manager (NTLM) protocol analysis.
|
||||
|
||||
:doc:`/scripts/base/protocols/ntlm/__load__.bro`
|
||||
|
||||
|
||||
:doc:`/scripts/base/protocols/ntlm/main.bro`
|
||||
|
||||
|
71
doc/scripts/base/protocols/ntlm/main.bro.rst
Normal file
71
doc/scripts/base/protocols/ntlm/main.bro.rst
Normal file
|
@ -0,0 +1,71 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/protocols/ntlm/main.bro
|
||||
============================
|
||||
.. bro:namespace:: NTLM
|
||||
|
||||
|
||||
:Namespace: NTLM
|
||||
:Imports: :doc:`base/frameworks/dpd </scripts/base/frameworks/dpd/index>`
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
Types
|
||||
#####
|
||||
========================================== =
|
||||
:bro:type:`NTLM::Info`: :bro:type:`record`
|
||||
========================================== =
|
||||
|
||||
Redefinitions
|
||||
#############
|
||||
==================================================================== =
|
||||
:bro:id:`DPD::ignore_violations`: :bro:type:`set` :bro:attr:`&redef`
|
||||
:bro:type:`Log::ID`: :bro:type:`enum`
|
||||
:bro:type:`connection`: :bro:type:`record`
|
||||
==================================================================== =
|
||||
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
Types
|
||||
#####
|
||||
.. bro:type:: NTLM::Info
|
||||
|
||||
:Type: :bro:type:`record`
|
||||
|
||||
ts: :bro:type:`time` :bro:attr:`&log`
|
||||
Timestamp for when the event happened.
|
||||
|
||||
uid: :bro:type:`string` :bro:attr:`&log`
|
||||
Unique ID for the connection.
|
||||
|
||||
id: :bro:type:`conn_id` :bro:attr:`&log`
|
||||
The connection's 4-tuple of endpoint addresses/ports.
|
||||
|
||||
username: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Username given by the client.
|
||||
|
||||
hostname: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Hostname given by the client.
|
||||
|
||||
domainname: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Domainname given by the client.
|
||||
|
||||
server_nb_computer_name: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
NetBIOS name given by the server in a CHALLENGE.
|
||||
|
||||
server_dns_computer_name: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
DNS name given by the server in a CHALLENGE.
|
||||
|
||||
server_tree_name: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Tree name given by the server in a CHALLENGE.
|
||||
|
||||
success: :bro:type:`bool` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Indicate whether or not the authentication was successful.
|
||||
|
||||
done: :bro:type:`bool` :bro:attr:`&default` = ``F`` :bro:attr:`&optional`
|
||||
Internally used field to indicate if the login attempt
|
||||
has already been logged.
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue