mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Make DCE_RPC skip input in strange fragment circumstances.
If there are too many concurrent fragments or too much data fragmented, skip further input on DCE_RPC.
This commit is contained in:
parent
c88719472b
commit
36ae5e6662
2 changed files with 5 additions and 2 deletions
|
@ -4,12 +4,12 @@ module DCE_RPC;
|
|||
export {
|
||||
## The maximum number of simultaneous fragmented commands that
|
||||
## the analyzer will tolerate before the analyzer will generate
|
||||
## a weird and remove itself from the connection.
|
||||
## a weird and skip further input.
|
||||
const max_cmd_reassembly = 20 &redef;
|
||||
|
||||
## The maximum number of fragmented bytes that will be tolerated
|
||||
## on a command before the analyzer will generate a weird and
|
||||
## remove itself from the connection.
|
||||
## skip further input.
|
||||
const max_frag_data = 30000 &redef;
|
||||
|
||||
const uuid_endpoint_map: table[string] of string = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue