mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48:21 +00:00
Change doc/ subdir into a git submodule
The docs now live at https://github.com/zeek/zeek-docs
This commit is contained in:
parent
0d685efbf5
commit
2ff746fea7
693 changed files with 26 additions and 105609 deletions
|
@ -1,14 +0,0 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/protocols/dce-rpc/__load__.bro
|
||||
===================================
|
||||
|
||||
|
||||
:Imports: :doc:`base/protocols/dce-rpc/consts.bro </scripts/base/protocols/dce-rpc/consts.bro>`, :doc:`base/protocols/dce-rpc/main.bro </scripts/base/protocols/dce-rpc/main.bro>`
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
File diff suppressed because it is too large
Load diff
|
@ -1,17 +0,0 @@
|
|||
:orphan:
|
||||
|
||||
Package: base/protocols/dce-rpc
|
||||
===============================
|
||||
|
||||
Support for DCE/RPC (Distributed Computing Environment/Remote Procedure
|
||||
Calls) protocol analysis.
|
||||
|
||||
:doc:`/scripts/base/protocols/dce-rpc/__load__.bro`
|
||||
|
||||
|
||||
:doc:`/scripts/base/protocols/dce-rpc/consts.bro`
|
||||
|
||||
|
||||
:doc:`/scripts/base/protocols/dce-rpc/main.bro`
|
||||
|
||||
|
|
@ -1,123 +0,0 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/protocols/dce-rpc/main.bro
|
||||
===============================
|
||||
.. bro:namespace:: DCE_RPC
|
||||
|
||||
|
||||
:Namespace: DCE_RPC
|
||||
:Imports: :doc:`base/frameworks/dpd </scripts/base/frameworks/dpd/index>`, :doc:`base/protocols/dce-rpc/consts.bro </scripts/base/protocols/dce-rpc/consts.bro>`
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
Runtime Options
|
||||
###############
|
||||
=========================================================================== ===============================================================
|
||||
:bro:id:`DCE_RPC::ignored_operations`: :bro:type:`table` :bro:attr:`&redef` These are DCE-RPC operations that are ignored, typically due to
|
||||
the operations being noisy and low value on most networks.
|
||||
=========================================================================== ===============================================================
|
||||
|
||||
Types
|
||||
#####
|
||||
===================================================== =
|
||||
:bro:type:`DCE_RPC::BackingState`: :bro:type:`record`
|
||||
:bro:type:`DCE_RPC::Info`: :bro:type:`record`
|
||||
:bro:type:`DCE_RPC::State`: :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`
|
||||
:bro:id:`likely_server_ports`: :bro:type:`set` :bro:attr:`&redef`
|
||||
==================================================================== =
|
||||
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
Runtime Options
|
||||
###############
|
||||
.. bro:id:: DCE_RPC::ignored_operations
|
||||
|
||||
:Type: :bro:type:`table` [:bro:type:`string`] of :bro:type:`set` [:bro:type:`string`]
|
||||
:Attributes: :bro:attr:`&redef`
|
||||
:Default:
|
||||
|
||||
::
|
||||
|
||||
{
|
||||
["winreg"] = {
|
||||
"BaseRegOpenKey",
|
||||
"BaseRegEnumKey",
|
||||
"OpenClassesRoot",
|
||||
"BaseRegCloseKey",
|
||||
"OpenLocalMachine",
|
||||
"BaseRegQueryValue",
|
||||
"BaseRegDeleteKeyEx",
|
||||
"BaseRegGetVersion"
|
||||
},
|
||||
["spoolss"] = {
|
||||
"RpcSplOpenPrinter",
|
||||
"RpcClosePrinter"
|
||||
},
|
||||
["wkssvc"] = {
|
||||
"NetrWkstaGetInfo"
|
||||
}
|
||||
}
|
||||
|
||||
These are DCE-RPC operations that are ignored, typically due to
|
||||
the operations being noisy and low value on most networks.
|
||||
|
||||
Types
|
||||
#####
|
||||
.. bro:type:: DCE_RPC::BackingState
|
||||
|
||||
:Type: :bro:type:`record`
|
||||
|
||||
info: :bro:type:`DCE_RPC::Info`
|
||||
|
||||
state: :bro:type:`DCE_RPC::State`
|
||||
|
||||
|
||||
.. bro:type:: DCE_RPC::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.
|
||||
|
||||
rtt: :bro:type:`interval` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Round trip time from the request to the response.
|
||||
If either the request or response wasn't seen,
|
||||
this will be null.
|
||||
|
||||
named_pipe: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Remote pipe name.
|
||||
|
||||
endpoint: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Endpoint name looked up from the uuid.
|
||||
|
||||
operation: :bro:type:`string` :bro:attr:`&log` :bro:attr:`&optional`
|
||||
Operation seen in the call.
|
||||
|
||||
|
||||
.. bro:type:: DCE_RPC::State
|
||||
|
||||
:Type: :bro:type:`record`
|
||||
|
||||
uuid: :bro:type:`string` :bro:attr:`&optional`
|
||||
|
||||
named_pipe: :bro:type:`string` :bro:attr:`&optional`
|
||||
|
||||
ctx_to_uuid: :bro:type:`table` [:bro:type:`count`] of :bro:type:`string` :bro:attr:`&optional`
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue