Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elniak/rustynetcracker
Advanced credential-cracking tool in Rust, designed to perform brute-force and dictionary attacks on various network protocols with high efficiency and reliabilit
https://github.com/elniak/rustynetcracker
Last synced: 21 days ago
JSON representation
Advanced credential-cracking tool in Rust, designed to perform brute-force and dictionary attacks on various network protocols with high efficiency and reliabilit
- Host: GitHub
- URL: https://github.com/elniak/rustynetcracker
- Owner: ElNiak
- Created: 2024-05-19T16:57:28.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-19T17:52:19.000Z (8 months ago)
- Last Synced: 2024-12-12T04:42:52.981Z (22 days ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RustyNetCracker
Advanced credential-cracking tool in Rust, designed to perform brute-force and dictionary attacks on various network protocols with high efficiency and reliabilit## Key Features
* Multi-Protocol Support: Support for SSH, FTP, HTTP, SMTP, and other common protocols.
* High Performance: Utilize Rust's concurrency model to perform high-speed attacks.
* Distributed Cracking: Capability to distribute the cracking process across multiple machines.
* Customization: Allow users to customize attack parameters, wordlists, and rules.
* Reporting: Generate detailed reports on successful attacks and attempts.## Installation
1. Clone the repository:
```bash
git clone
```2. Build the project:
```bash
cargo build --release
```## Usage
```bash
cargo run -- --target --protocol --credentials --log_filecargo run -- --target 192.168.1.100:22 --protocol ssh --credentials user:password123 --log_file custom_log.txt --log_level INFO
```