mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 19:18:19 +00:00
Tiny bugfix for http file extraction along with test.
This commit is contained in:
parent
507b51c957
commit
b12d2c768e
4 changed files with 315 additions and 1 deletions
|
@ -33,7 +33,7 @@ export {
|
|||
event http_entity_data(c: connection, is_orig: bool, length: count, data: string) &priority=5
|
||||
{
|
||||
# Client body extraction is not currently supported in this script.
|
||||
if ( is_orig || ! c$http$first_chunk ) return;
|
||||
if ( is_orig ) return;
|
||||
|
||||
if ( c$http$first_chunk )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue