rwalk 0.9.0

A blazing fast web directory scanner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub const SUCCESS: char = '';
pub const ERROR: char = '';
pub const WARNING: char = '';
pub const INFO: char = '';

pub const PROGRESS_TEMPLATE: &str = "{spinner:.blue} (ETA. {eta}) [{wide_bar}] {pos:>5}/{len} ({per_sec:>12}) | {prefix:>3} {msg:>14.bold}";
pub const PROGRESS_CHARS: &str = "█▉▊▋▌▍▎▏ ";

pub const DEFAULT_SAVE_FILE: &str = ".rwalk.json";
pub const DEFAULT_STATUS_CODES: &str = "200-299,301-302,307,401,403,405,500";
pub const DEFAULT_FUZZ_KEY: &str = "$";
pub const DEFAULT_FOLLOW_REDIRECTS: usize = 5;
pub const DEFAULT_TIMEOUT: usize = 10;
pub const DEFAULT_METHOD: &str = "GET";
pub const DEFAULT_MODE: &str = "recursive";
pub const DEFAULT_DEPTH: usize = 1;
pub const DEFAULT_FILE_TYPE: &str = "txt";
pub const DEFAULT_CONFIG_PATH: &str = ".config/rwalk/config.toml";