filaris
is a fast multithreaded tool for exploring and trace pathways within any website.
sudo apt install libssl-dev
Clone the project
git clone https://github.com/YuriRDev/filaris
Go to the project directory
cd filaris
🌟 Run Filaris
cargo run --url "yourwebsite.com"
Name | Value | Default | Description |
---|---|---|---|
url |
String | - | The initial URL to start scanning from. |
max_urls |
Integer | 1000 |
Specifies the maximum number of URL to discover. |
match_str |
String | "" |
A string that new URLs must contain to be considered. |
ignore |
Vec | [] |
URLs containing any of these strings will be ignored. |
concurrency |
Integer | 10 |
Number of tasks that will be spawned concurrently. |
cargo run --url "yourwebsite.com" --match-str "yourwebsite.com" --ignore "wordpress" --ignore "wp" --concurrency 10
Here, are some known bugs and WIP, all the items here should be resolved in a few days.
- Don't add to queue items that are already have been scanned - That causes loops.
- Don't add to queue items that are already in queue - That causes loops.
- Usage of Priority Queue instead of a simple Queue.
- Bring back
--depth
arg