-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathscan.rs
137 lines (133 loc) · 3.5 KB
/
scan.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
use crate::cli::args::Opts;
use crate::cli::input::{get_target_hosts, get_target_paths, get_target_urls};
use crate::cli::logger::init_log;
use crate::CliErrors;
use crate::Lotus;
use crate::RequestOpts;
use crate::{show_msg, MessageLevel};
use std::sync::{Arc, Mutex};
use structopt::StructOpt;
pub struct ScanArgs {
pub target_data: TargetData,
pub exit_after: i32,
pub is_request: bool,
pub req_opts: RequestOpts,
pub lotus_obj: Lotus,
pub requests_limit: i32,
pub delay: u64,
pub fuzz_workers: usize,
pub verbose: bool,
}
pub struct TargetData {
pub urls: Vec<String>,
pub hosts: Vec<String>,
pub paths: Vec<String>,
}
pub fn args_scan() -> ScanArgs {
let (
urls,
hosts,
paths,
exit_after,
is_request,
req_opts,
lotus_obj,
requests_limit,
delay,
fuzz_workers,
verbose,
) = match Opts::from_args() {
Opts::SCAN {
redirects,
workers,
scripts_workers,
timeout,
script_path,
output,
proxy,
log,
urls,
headers,
exit_after,
requests_limit,
delay,
fuzz_workers,
verbose,
is_request,
env_vars,
} => {
// setup logger
init_log(log).unwrap();
let req_opts = RequestOpts {
headers,
proxy,
timeout,
redirects,
};
let lotus_obj = Lotus {
script_path,
output,
workers,
script_workers: scripts_workers,
stop_after: Arc::new(Mutex::new(1)),
env_vars,
};
let urls = get_target_urls(urls);
if urls.is_err() {
match urls {
Err(CliErrors::EmptyStdin) => {
show_msg("No input in Stdin", MessageLevel::Error);
}
Err(CliErrors::ReadingError) => {
show_msg("Cannot Read the urls file", MessageLevel::Error);
}
_ => {}
};
std::process::exit(1);
}
let urls_vec = urls
.unwrap()
.iter()
.map(|url| url.to_string())
.collect::<Vec<String>>();
let paths = match get_target_paths(urls_vec.clone()) {
Ok(paths) => paths,
Err(err) => {
show_msg(
&format!("Failed to get target paths: {}", err),
MessageLevel::Error,
);
vec![]
}
};
let hosts = get_target_hosts(urls_vec.clone());
(
urls_vec,
hosts,
paths,
exit_after,
is_request,
req_opts,
lotus_obj,
requests_limit,
delay,
fuzz_workers,
verbose,
)
}
_ => {
std::process::exit(1);
}
};
ScanArgs {
target_data: TargetData { urls, hosts, paths },
exit_after,
is_request,
req_opts,
lotus_obj,
requests_limit,
delay,
fuzz_workers,
verbose,
}
}