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)
- Host: GitHub
- URL: https://github.com/rusticata/rusticata
- Owner: rusticata
- License: lgpl-2.1
- Created: 2016-10-09T20:04:46.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-26T14:44:08.000Z (9 months ago)
- Last Synced: 2025-03-29T17:34:06.617Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 224 KB
- Stars: 95
- Watchers: 7
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
[](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.