mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
Merge branch 'patch-2' of https://github.com/jshlbrd/bro
This commit is contained in:
commit
fae4ff8da2
4 changed files with 19 additions and 2 deletions
13
CHANGES
13
CHANGES
|
@ -1,4 +1,17 @@
|
||||||
|
|
||||||
|
2.3-793 | 2015-04-20 20:51:00 -0700
|
||||||
|
|
||||||
|
* Add decoding of PROXY-AUTHORIZATION header to HTTP analyze,
|
||||||
|
treating it the same as AUTHORIZATION. (Josh Liburdi)
|
||||||
|
|
||||||
|
* Remove deprecated fields "hot" and "addl" from the connection
|
||||||
|
record. Remove the functions append_addl() and
|
||||||
|
append_addl_marker(). (Robin Sommer)
|
||||||
|
|
||||||
|
* Removing the NetFlow analyzer, which hasn't been used anymore
|
||||||
|
since then corresponding command-line option went away. (Robin
|
||||||
|
Sommer)
|
||||||
|
|
||||||
2.3-787 | 2015-04-20 19:15:23 -0700
|
2.3-787 | 2015-04-20 19:15:23 -0700
|
||||||
|
|
||||||
* A file analyzer for Portable Executables. (Vlad Grigorescu/Seth
|
* A file analyzer for Portable Executables. (Vlad Grigorescu/Seth
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -188,6 +188,10 @@ Changed Functionality
|
||||||
- The capability of processing NetFlow input has been removed for the
|
- The capability of processing NetFlow input has been removed for the
|
||||||
time being.
|
time being.
|
||||||
|
|
||||||
|
- The deprecated fields "hot" and "addl" have been removed from the
|
||||||
|
connection record. Likewise, the functions append_addl() and
|
||||||
|
append_addl_marker() have been removed.
|
||||||
|
|
||||||
Deprecated Functionality
|
Deprecated Functionality
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.3-787
|
2.3-793
|
||||||
|
|
|
@ -266,7 +266,7 @@ event http_header(c: connection, is_orig: bool, name: string, value: string) &pr
|
||||||
add c$http$proxied[fmt("%s -> %s", name, value)];
|
add c$http$proxied[fmt("%s -> %s", name, value)];
|
||||||
}
|
}
|
||||||
|
|
||||||
else if ( name == "AUTHORIZATION" )
|
else if ( name == "AUTHORIZATION" || name == "PROXY-AUTHORIZATION" )
|
||||||
{
|
{
|
||||||
if ( /^[bB][aA][sS][iI][cC] / in value )
|
if ( /^[bB][aA][sS][iI][cC] / in value )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue