| Crates.io | arachnid |
| lib.rs | arachnid |
| version | 0.0.3 |
| created_at | 2026-01-11 15:59:24.907449+00 |
| updated_at | 2026-01-21 18:56:14.819297+00 |
| description | arachnid aims to be a complete offensive security suite written for Rust. |
| homepage | https://github.com/FL03/arachnid/wikis |
| repository | https://github.com/FL03/arachnid.git |
| max_upload_size | |
| id | 2036009 |
| size | 47,479 |
The library is currently in the early stages of development and is not yet ready for production use.
arachnid is an offensive programming library for Rust that provides
advanced tools and utilities for security researchers, penetration testers, and developers interested in offensive security techniques. The library aims to simplify the process of creating security tools and scripts by providing a comprehensive set of features and abstractions.
Add this to your Cargo.toml:
[dependencies.arachnid]
features = []
version = "0.0.x"
Listed below are some basic examples of how to use arachnid:
extern crate arachnid;
fn main() -> Result<(), arachnid::Error> {
tracing_subscriber::fmt()
.with_max_level(tracing::Level::INFO)
.init();
tracing::info! { "Welcome to {name}", name = "arachnid" }
Ok(())
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.