[Oisf-devel] [COMMIT] OISF branch, master, updated. suricata-3.1.2-134-ga194dfb

OISF Git noreply at openinfosecfoundation.org
Tue Sep 27 13:52:40 UTC 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OISF".

The branch, master has been updated
       via  a194dfbd5b1ac6b2b2db594267cf3caac7686618 (commit)
       via  675fa564972b5a5336a31fe36f7ff1313ec4c7f3 (commit)
       via  5908dd080475bccd689bf2d5309b92530f33801c (commit)
      from  398489e6df179e621563ac966e47a6a376c4e3de (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a194dfbd5b1ac6b2b2db594267cf3caac7686618
Author: Eric Leblond <eric at regit.org>
Date:   Thu May 26 23:11:34 2016 +0200

    app-layer: tx counter implementation
    
    This patch adds a transaction counter for application layers
    supporting it. Analysis is done after the parsing by the
    different application layers.
    
    This result in new data in the stats output, that looks like:
    ```
        "app-layer": {
          "tx": {
            "dns_udp": 21433,
            "http": 12766,
            "smtp": 0,
            "dns_tcp": 0
          }
        },
    ```

commit 675fa564972b5a5336a31fe36f7ff1313ec4c7f3
Author: Giuseppe Longo <glongo at stamus-networks.com>
Date:   Mon Sep 26 14:55:16 2016 +0200

    app-layer: add ThreadVars to AppLayerParserParse
    
    To be able to add a transaction counter we will need a ThreadVars
    in the AppLayerParserParse function.
    This function is massively used in unittests
    and this result in an long commit.

commit 5908dd080475bccd689bf2d5309b92530f33801c
Author: Giuseppe Longo <glongo at stamus-networks.com>
Date:   Tue Apr 26 14:58:59 2016 +0200

    app-layer: add flow counters
    
    This adds per flow counters for all
    supported protocols.
    
    This results in new data in stats output that looks like:
    ```
        "app-layer": {
          "flow": {
            "http": 9310,
            "ftp": 0,
            "smtp": 0,
            "tls": 71,
            "ssh": 0,
            "imap": 0,
            "msn": 0,
            "smb": 170,
            "dcerpc_udp": 0,
            "dns_udp": 870,
            "dcerpc_tcp": 2,
            "dns_tcp": 0
          },
        },
    ```

-----------------------------------------------------------------------

Summary of changes:
 src/app-layer-dcerpc-udp.c        |   5 +-
 src/app-layer-dcerpc.c            | 160 +++++++++--------
 src/app-layer-detect-proto.c      |  15 +-
 src/app-layer-ftp.c               |  28 ++-
 src/app-layer-htp-file.c          | 125 +++++++++----
 src/app-layer-htp.c               | 166 ++++++++++-------
 src/app-layer-modbus.c            | 143 ++++++++-------
 src/app-layer-parser.c            |  38 +++-
 src/app-layer-parser.h            |   3 +-
 src/app-layer-smb.c               |  48 +++--
 src/app-layer-smb2.c              |   4 +-
 src/app-layer-smtp.c              | 367 +++++++++++++++++++-------------------
 src/app-layer-ssh.c               | 189 +++++++++++++-------
 src/app-layer-ssl.c               | 144 +++++++++------
 src/app-layer.c                   | 175 ++++++++++++++++--
 src/app-layer.h                   |   7 +
 src/detect-dce-iface.c            |  45 +++--
 src/detect-dce-opnum.c            |  20 ++-
 src/detect-dce-stub-data.c        |  76 +++++---
 src/detect-dns-query.c            |  45 +++--
 src/detect-engine-dcepayload.c    |  33 ++--
 src/detect-engine-filedata-smtp.c |  11 +-
 src/detect-engine-hcbd.c          |   6 +-
 src/detect-engine-hcd.c           |  51 ++++--
 src/detect-engine-hhd.c           | 132 +++++++++-----
 src/detect-engine-hhhd.c          |  75 +++++---
 src/detect-engine-hmd.c           |  51 ++++--
 src/detect-engine-hrhd.c          | 122 ++++++++-----
 src/detect-engine-hrhhd.c         |  75 +++++---
 src/detect-engine-hrl.c           | 162 +++++++++++------
 src/detect-engine-hrud.c          | 147 ++++++++++-----
 src/detect-engine-hsbd.c          | 165 +++++++++++------
 src/detect-engine-hscd.c          |  93 ++++++----
 src/detect-engine-hsmd.c          |  93 ++++++----
 src/detect-engine-hua.c           |  51 ++++--
 src/detect-engine-modbus.c        |  45 +++--
 src/detect-engine-state.c         |  60 +++++--
 src/detect-engine-uri.c           | 162 +++++++++++------
 src/detect-ftpbounce.c            |  24 ++-
 src/detect-http-client-body.c     |  78 +++++---
 src/detect-http-cookie.c          |  41 +++--
 src/detect-http-header.c          |  45 +++--
 src/detect-http-hh.c              |  54 ++++--
 src/detect-http-hrh.c             |  60 ++++---
 src/detect-http-method.c          |  12 +-
 src/detect-http-raw-header.c      |  36 ++--
 src/detect-http-server-body.c     | 254 +++++++++++++++++++-------
 src/detect-http-stat-code.c       |  24 ++-
 src/detect-http-stat-msg.c        |  18 +-
 src/detect-http-ua.c              |  54 ++++--
 src/detect-lua.c                  |  24 ++-
 src/detect-pcre.c                 | 109 +++++++----
 src/detect-ssh-proto-version.c    |  36 ++--
 src/detect-ssh-software-version.c |  36 ++--
 src/detect-ssl-state.c            |  17 +-
 src/detect-ssl-version.c          |  36 ++--
 src/detect-template-buffer.c      |   4 +-
 src/detect-tls-cert-issuer.c      |   9 +-
 src/detect-tls-cert-subject.c     |   9 +-
 src/detect-tls-cert-validity.c    |   9 +-
 src/detect-tls-sni.c              |   6 +-
 src/detect-tls-version.c          |  36 ++--
 src/detect-uricontent.c           |  42 +++--
 src/detect-urilen.c               |   3 +-
 src/detect.c                      |  33 ++--
 src/flow-worker.c                 |   2 +
 66 files changed, 2936 insertions(+), 1512 deletions(-)


hooks/post-receive
-- 
OISF


More information about the Oisf-devel mailing list