There was an error while loading. Please reload this page.
1 parent d530837 commit 5ac529fCopy full SHA for 5ac529f
src/resolver/mod.rs
@@ -127,7 +127,7 @@ pub async fn run_resolver(
127
if vhost {
128
// The above code is checking if a virtual host (vhost) is enabled. If it is enabled, it
129
let domain = host_with_port.clone();
130
-
+
131
let ip_url = match reqwest::Url::parse(&ip_str.to_string()) {
132
Ok(u) => u,
133
Err(_) => continue,
@@ -158,7 +158,7 @@ pub async fn run_resolver(
158
};
159
if response.status().as_u16() != 404 {
160
// Print the domain and IP address
161
- println!("\n\t{} belongs to -> {}", domain, address.to_string());
+ println!("{} belongs to -> {}", domain, address.to_string());
162
let job = JobResult {
163
domain: domain,
164
ip: address.to_string(),
0 commit comments