Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created February 21, 2020 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/0ac43454bef7aae8d104613bc439d72b to your computer and use it in GitHub Desktop.
Save r-ryantm/0ac43454bef7aae8d104613bc439d72b to your computer and use it in GitHub Desktop.
/nix/store/1cz7vfd9ilgfafwmz04jfn1ck35i7gnn-suricata-5.0.2
├── bin
│   ├── suricata
│   ├── suricatactl
│   └── suricatasc
├── etc
│   └── suricata
│   ├── classification.config
│   ├── reference.config
│   ├── suricata.yaml
│   └── threshold.config
├── include
│   └── htp
│   ├── bstr_builder.h
│   ├── bstr.h
│   ├── htp_base64.h
│   ├── htp_config.h
│   ├── htp_connection_parser.h
│   ├── htp_core.h
│   ├── htp_decompressors.h
│   ├── htp.h
│   ├── htp_hooks.h
│   ├── htp_list.h
│   ├── htp_multipart.h
│   ├── htp_table.h
│   ├── htp_transaction.h
│   ├── htp_urlencoded.h
│   ├── htp_utf8_decoder.h
│   ├── htp_version.h
│   └── lzma
│   ├── 7zTypes.h
│   └── LzmaDec.h
├── lib
│   ├── libhtp.la
│   ├── libhtp.so -> libhtp.so.2.0.0
│   ├── libhtp.so.2 -> libhtp.so.2.0.0
│   ├── libhtp.so.2.0.0
│   ├── pkgconfig
│   │   └── htp.pc
│   └── python3.7
│   └── site-packages
│   ├── suricata
│   │   ├── config
│   │   │   ├── defaults.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── defaults.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── ctl
│   │   │   ├── filestore.py
│   │   │   ├── __init__.py
│   │   │   ├── loghandler.py
│   │   │   ├── main.py
│   │   │   ├── __pycache__
│   │   │   │   ├── filestore.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── loghandler.cpython-37.pyc
│   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   └── test_filestore.cpython-37.pyc
│   │   │   └── test_filestore.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   └── sc
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── specs.cpython-37.pyc
│   │   │   └── suricatasc.cpython-37.pyc
│   │   ├── specs.py
│   │   └── suricatasc.py
│   ├── suricata-5.0.2-py3.7.egg-info
│   └── suricatasc
│   ├── __init__.py
│   └── __pycache__
│   └── __init__.cpython-37.pyc
└── share
├── doc
│   └── suricata
│   ├── AUTHORS
│   ├── Basic_Setup.txt
│   ├── GITGUIDE
│   ├── INSTALL
│   ├── INSTALL.PF_RING
│   ├── INSTALL.WINDOWS
│   ├── NEWS
│   ├── README
│   ├── Setting_up_IPSinline_for_Linux.txt
│   ├── Third_Party_Installation_Guides.txt
│   └── TODO
├── man
│   └── man1
│   └── suricata.1.gz
└── suricata
├── classification.config
├── reference.config
└── rules
├── app-layer-events.rules
├── decoder-events.rules
├── dhcp-events.rules
├── dnp3-events.rules
├── dns-events.rules
├── files.rules
├── http-events.rules
├── ipsec-events.rules
├── kerberos-events.rules
├── modbus-events.rules
├── nfs-events.rules
├── ntp-events.rules
├── smb-events.rules
├── smtp-events.rules
├── stream-events.rules
└── tls-events.rules
27 directories, 85 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment