ftpbrutal is a brute-force tool for FTP servers. It attempts to connect by testing passwords from a provided wordlist until a successful connection is established.
-
Clone the repository to your local machine:
$ git clone https://github.com/voidex1/ftpbrtual.git
-
Compile the code:
$ cd ftpbrtual $ cargo build --release -
Spin up the container with the FTP server using Docker:
$ docker-compose up -d
Here are a few examples to demonstrate how to use the tool:
-
Basic usage:
$ cargo run -- --u john --w rockyouu.txt --p 21 --ip 127.0.0.3
-
Or
$ ./target/release/ftp-brutal --u john --w rockyouu.txt --p 21 --ip 127.0.0.3
v1.webm
v2.webm
- Rust: Make sure you have Rust installed on your system. You can install it from https://www.rust-lang.org/tools/install.