An open API service indexing awesome lists of open source software.

https://github.com/rusticata/rusticata

Rusticata: Rust parsers for Suricata (test code)
https://github.com/rusticata/rusticata

Last synced: 29 days ago
JSON representation

Rusticata: Rust parsers for Suricata (test code)

Awesome Lists containing this project

README

        

[![Github CI](https://github.com/rusticata/rusticata/workflows/Continuous%20integration/badge.svg)](https://github.com/rusticata/rusticata/actions)

# Rusticata

## Overview

Rusticata is a test crate for network protocol parsers written in Rust.

It was written to show to feasibility of the implementation of safe and efficient parsers
in suricata. The real parsing code is now part of suricata (starting from
version 4.0), and must be configured using the `--enable-rust` flag.

This project is now a playground for testing parsers, features and code.

This project is based on:
- [nom](https://github.com/Geal/nom) a Rust parser combinator framework
- Many parsers from the [rusticata project](https://github.com/rusticata)

## Build

Run `cargo build` for a build in debug mode, `cargo build --release` for release mode.

Use `cargo install` to install the library, or set the `LD_LIBRARY_PATH` environment variable.

## Testing

`rusticata` is mostly used to decode application layers in the
[pcap-analyzer](https://github.com/rusticata/pcap-analyzer) project.
See its documentation for examples.

## License

This library is licensed under the GNU Lesser General Public License version 2.1, or (at your option) any later version.