-
-
Notifications
You must be signed in to change notification settings - Fork 374
/
Copy pathlib.rs
752 lines (691 loc) · 24.4 KB
/
lib.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
#[macro_use]
extern crate serde_derive;
use serde::de::DeserializeOwned;
#[macro_use]
extern crate lazy_static;
pub mod args;
pub mod errors;
mod get_vars;
mod misc;
use crate::errors::*;
use postgres::{Connection, TlsMode};
use rand::Rng;
use std::{
collections::{HashMap, HashSet},
error::Error,
fs::{File, OpenOptions},
io::{BufRead, BufReader, Write},
thread,
time::Duration,
};
use trust_dns_resolver::{config::ResolverConfig, config::ResolverOpts, Resolver};
trait IntoSubdomains {
fn into_subdomains(self) -> HashSet<String>;
}
impl IntoSubdomains for HashSet<String> {
#[inline]
fn into_subdomains(self) -> HashSet<String> {
self
}
}
#[derive(Deserialize, Eq, PartialEq, Hash)]
struct SubdomainsCertSpotter {
dns_names: Vec<String>,
}
#[derive(Deserialize, Eq, PartialEq, Hash)]
struct SubdomainsCrtsh {
name_value: String,
}
#[allow(non_snake_case)]
struct SubdomainsDBCrtsh {
NAME_VALUE: String,
}
#[derive(Deserialize, Eq, PartialEq, Hash)]
struct SubdomainsVirustotal {
id: String,
}
#[derive(Deserialize, Eq, PartialEq)]
struct ResponseDataVirusTotal {
data: HashSet<SubdomainsVirustotal>,
}
impl IntoSubdomains for ResponseDataVirusTotal {
fn into_subdomains(self) -> HashSet<String> {
self.data.into_iter().map(|sub| sub.id).collect()
}
}
#[derive(Deserialize, Eq, PartialEq, Hash)]
struct SubdomainsFacebook {
domains: Vec<String>,
}
#[derive(Deserialize, Eq, PartialEq)]
struct ResponseDataFacebook {
data: HashSet<SubdomainsFacebook>,
}
impl IntoSubdomains for ResponseDataFacebook {
fn into_subdomains(self) -> HashSet<String> {
self.data
.into_iter()
.flat_map(|sub| sub.domains.into_iter())
.collect()
}
}
#[derive(Deserialize, Eq, PartialEq, Hash)]
struct SubdomainsSpyse {
domain: String,
}
#[derive(Deserialize, Eq, PartialEq)]
struct ResponseDataSpyse {
records: HashSet<SubdomainsSpyse>,
}
impl IntoSubdomains for ResponseDataSpyse {
fn into_subdomains(self) -> HashSet<String> {
self.records.into_iter().map(|sub| sub.domain).collect()
}
}
#[derive(Deserialize)]
#[allow(non_snake_case)]
struct SubdomainsBufferover {
FDNS_A: HashSet<String>,
}
impl IntoSubdomains for SubdomainsBufferover {
fn into_subdomains(self) -> HashSet<String> {
self.FDNS_A
.iter()
.map(|sub| sub.split(','))
.flatten()
.map(str::to_owned)
.collect()
}
}
#[derive(Deserialize)]
struct SubdomainsThreadcrowd {
subdomains: HashSet<String>,
}
impl IntoSubdomains for SubdomainsThreadcrowd {
fn into_subdomains(self) -> HashSet<String> {
self.subdomains.into_iter().collect()
}
}
#[derive(Deserialize)]
struct SubdomainsVirustotalApikey {
subdomains: HashSet<String>,
}
impl IntoSubdomains for SubdomainsVirustotalApikey {
fn into_subdomains(self) -> HashSet<String> {
self.subdomains.into_iter().collect()
}
}
struct Subdomain {
name: String,
}
lazy_static! {
static ref CLIENT: reqwest::Client = reqwest::Client::builder()
.timeout(Duration::from_secs(20))
.build()
.unwrap();
static ref RESOLVER: Resolver = get_resolver();
}
pub fn get_subdomains(args: &mut args::Args) -> Result<()> {
if !args.quiet_flag {
println!("\nTarget ==> {}\n", &args.target)
}
if args.query_database {
query_findomain_database(args)?
} else {
if args.monitoring_flag {
args.discord_webhook = get_vars::get_webhook("discord");
args.slack_webhook = get_vars::get_webhook("slack");
args.telegram_bot_token = get_vars::get_auth_token("telegram");
args.telegram_chat_id = get_vars::get_chat_id("telegram");
check_monitoring_parameters(args)?;
}
args.subdomains = search_subdomains(args);
if args.subdomains.is_empty() {
eprintln!(
"\nNo subdomains were found for the target: {} ¡😭!\n",
&args.target
);
} else {
misc::works_with_data(args)?
}
}
Ok(())
}
fn search_subdomains(args: &mut args::Args) -> HashSet<String> {
let quiet_flag = args.quiet_flag;
let base_target = &format!(".{}", args.target);
let spyse_access_token = get_vars::get_auth_token("spyse");
let facebook_access_token = get_vars::get_auth_token("facebook");
let virustotal_access_token = get_vars::get_auth_token("virustotal");
let url_api_certspotter = format!(
"https://api.certspotter.com/v1/issuances?domain={}&include_subdomains=true&expand=dns_names",
&args.target
);
let url_api_virustotal = format!(
"https://www.virustotal.com/ui/domains/{}/subdomains?limit=40",
&args.target
);
let url_api_crtsh = format!("https://crt.sh/?q=%.{}&output=json", &args.target);
let crtsh_db_query = format!("SELECT ci.NAME_VALUE NAME_VALUE FROM certificate_identity ci WHERE ci.NAME_TYPE = 'dNSName' AND reverse(lower(ci.NAME_VALUE)) LIKE reverse(lower('%.{}'))", &args.target);
let url_api_sublist3r = format!(
"https://api.sublist3r.com/search.php?domain={}",
&args.target
);
let url_api_spyse = format!(
"https://api.spyse.com/v1/subdomains?domain={}&api_token={}",
&args.target, &spyse_access_token
);
let url_api_bufferover = format!("http://dns.bufferover.run/dns?q={}", &args.target);
let url_api_threatcrowd = format!(
"https://threatcrowd.org/searchApi/v2/domain/report/?domain={}",
&args.target
);
let url_api_anubisdb = format!("https://jonlu.ca/anubis/subdomains/{}", &args.target);
let mut all_subdomains: HashSet<String> = vec![
thread::spawn(move || get_certspotter_subdomains(&url_api_certspotter, quiet_flag)),
thread::spawn(move || get_crtsh_db_subdomains(&crtsh_db_query, &url_api_crtsh, quiet_flag)),
thread::spawn(move || get_virustotal_subdomains(&url_api_virustotal, quiet_flag)),
thread::spawn(move || get_sublist3r_subdomains(&url_api_sublist3r, quiet_flag)),
if facebook_access_token.is_empty() {
let findomain_fb_tokens = [
"688177841647920|RAeNYr8jwFXGH9v-IhGv4tfHMpU",
"772592906530976|CNkO7OxM6ssQgOBLCraC_dhKE7M",
"1004691886529013|iiUStPqcXCELcwv89-SZQSqqFNY",
"2106186849683294|beVoPBtLp3IWjpLsnF6Mpzo1gVM",
"2095886140707025|WkO8gTgPtwmnNZL3NQ74z92DA-k",
"434231614102088|pLJSVc9iOqxrG6NO7DDPrlkQ1qE",
"431009107520610|AX8VNunXMng-ainHO8Ke0sdeMJI",
"893300687707948|KW_O07biKRaW5fpNqeAeSrMU1W8",
"2477772448946546|BXn-h2zX6qb4WsFvtOywrNsDixo",
"509488472952865|kONi75jYL_KQ_6J1CHPQ1MH4x_U",
];
let url_api_fb = format!(
"https://graph.facebook.com/certificates?query={}&fields=domains&limit=10000&access_token={}",
&args.target,
&findomain_fb_tokens[rand::thread_rng().gen_range(0, findomain_fb_tokens.len())]
);
thread::spawn(move || get_facebook_subdomains(&url_api_fb, quiet_flag))
} else {
let url_api_fb = format!(
"https://graph.facebook.com/certificates?query={}&fields=domains&limit=10000&access_token={}",
&args.target,
&facebook_access_token);
thread::spawn(move || get_facebook_subdomains(&url_api_fb, quiet_flag))
},
thread::spawn(move || get_spyse_subdomains(&url_api_spyse, quiet_flag)),
thread::spawn(move || get_bufferover_subdomains(&url_api_bufferover, quiet_flag)),
thread::spawn(move || get_threatcrowd_subdomains(&url_api_threatcrowd, quiet_flag)),
if virustotal_access_token.is_empty() {
thread::spawn(|| None)
} else {
let url_virustotal_apikey = format!(
"https://www.virustotal.com/vtapi/v2/domain/report?apikey={}&domain={}",
&virustotal_access_token, &args.target
);
thread::spawn(move || {
get_virustotal_apikey_subdomains(&url_virustotal_apikey, quiet_flag)
})
},
thread::spawn(move || get_anubisdb_subdomains(&url_api_anubisdb, quiet_flag)),
].into_iter().map(|j| j.join().unwrap()).collect::<Vec<_>>().into_iter().flatten().flatten().collect();
all_subdomains
.retain(|sub| !sub.contains('*') && !sub.starts_with('.') && sub.ends_with(base_target));
all_subdomains
}
fn manage_subdomains_data(args: &mut args::Args) -> Result<()> {
if !args.quiet_flag {
println!()
};
let mut subdomains_resolved = 0;
if args.with_output && (args.only_resolved || args.with_ip) {
if args.only_resolved {
for subdomain in &args.subdomains {
if RESOLVER.lookup_ip(subdomain).is_ok() {
write_to_file(subdomain, &args.file_name)?;
println!("{}", subdomain);
subdomains_resolved += 1
}
}
} else if args.with_ip {
for subdomain in &args.subdomains {
let ip = get_ip(&RESOLVER, subdomain);
let data = format!("{},{}", subdomain, ip);
if !ip.is_empty() {
write_to_file(&data, &args.file_name)?;
println!("{}", data);
subdomains_resolved += 1
}
}
}
misc::show_subdomains_found(subdomains_resolved, &args.target, args.quiet_flag)
} else if !args.with_output && (args.only_resolved || args.with_ip) {
if args.only_resolved {
for subdomain in &args.subdomains {
if RESOLVER.lookup_ip(subdomain).is_ok() {
println!("{}", subdomain);
subdomains_resolved += 1
}
}
} else if args.with_ip {
for subdomain in &args.subdomains {
let ip = get_ip(&RESOLVER, subdomain);
if !ip.is_empty() {
println!("{}", &format!("{},{}", subdomain, ip));
subdomains_resolved += 1
}
}
}
misc::show_subdomains_found(subdomains_resolved, &args.target, args.quiet_flag)
} else if !args.only_resolved && !args.with_ip && args.with_output {
for subdomain in &args.subdomains {
println!("{}", subdomain);
write_to_file(subdomain, &args.file_name)?
}
misc::show_subdomains_found(args.subdomains.len(), &args.target, args.quiet_flag)
} else {
for subdomain in &args.subdomains {
println!("{}", subdomain);
}
misc::show_subdomains_found(args.subdomains.len(), &args.target, args.quiet_flag)
}
if !args.quiet_flag {
println!("\nGood luck Hax0r 💀!\n");
}
Ok(())
}
fn get_certspotter_subdomains(
url_api_certspotter: &str,
quiet_flag: bool,
) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("CertSpotter")
}
match CLIENT.get(url_api_certspotter).send() {
Ok(mut data_certspotter) => match data_certspotter.json::<HashSet<SubdomainsCertSpotter>>()
{
Ok(domains_certspotter) => Some(
domains_certspotter
.into_iter()
.flat_map(|sub| sub.dns_names.into_iter())
.collect(),
),
Err(e) => {
check_json_errors(e, "CertSpotter", quiet_flag);
None
}
},
Err(e) => {
check_request_errors(e, "CertSpotter", quiet_flag);
None
}
}
}
fn get_crtsh_subdomains(url_api_crtsh: &str, quiet_flag: bool) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Crtsh")
}
match CLIENT.get(url_api_crtsh).send() {
Ok(mut data_crtsh) => match data_crtsh.json::<HashSet<SubdomainsCrtsh>>() {
Ok(domains_crtsh) => Some(
domains_crtsh
.into_iter()
.map(|sub| sub.name_value)
.collect(),
),
Err(e) => {
check_json_errors(e, "Crtsh", quiet_flag);
None
}
},
Err(e) => {
check_request_errors(e, "Crtsh", quiet_flag);
None
}
}
}
fn get_crtsh_db_subdomains(
crtsh_db_query: &str,
url_api_crtsh: &str,
quiet_flag: bool,
) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Crtsh database")
}
match Connection::connect("postgres://guest@crt.sh:5432/certwatch", TlsMode::None) {
Ok(crtsh_db_client) => match crtsh_db_client.query(&crtsh_db_query, &[]) {
Ok(crtsh_db_subdomains) => Some(
crtsh_db_subdomains
.iter()
.map(|row| {
let subdomain = SubdomainsDBCrtsh {
NAME_VALUE: row.get("NAME_VALUE"),
};
subdomain.NAME_VALUE
})
.collect(),
),
Err(e) => {
if !quiet_flag {
println!(
"❌ A error has occurred while querying the Crtsh database. Error: {}. Trying the API method...",
e.description()
);
}
get_crtsh_subdomains(&url_api_crtsh, quiet_flag)
}
},
Err(e) => {
if !quiet_flag {
println!(
"❌ A error has occurred while connecting to the Crtsh database. Error: {}. Trying the API method...",
e.description()
);
}
get_crtsh_subdomains(&url_api_crtsh, quiet_flag)
}
}
}
fn get_from_http_api<T: DeserializeOwned + IntoSubdomains>(
url: &str,
name: &str,
quiet_flag: bool,
) -> Option<HashSet<String>> {
match CLIENT.get(url).send() {
Ok(mut data) => match data.json::<T>() {
Ok(json) => Some(json.into_subdomains()),
Err(e) => {
check_json_errors(e, name, quiet_flag);
None
}
},
Err(e) => {
check_request_errors(e, name, quiet_flag);
None
}
}
}
fn get_virustotal_subdomains(
url_api_virustotal: &str,
quiet_flag: bool,
) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Virustotal")
}
get_from_http_api::<ResponseDataVirusTotal>(url_api_virustotal, "Virustotal", quiet_flag)
}
fn get_sublist3r_subdomains(url_api_sublist3r: &str, quiet_flag: bool) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Sublist3r")
}
get_from_http_api::<HashSet<String>>(url_api_sublist3r, "Sublist3r", quiet_flag)
}
fn get_facebook_subdomains(url_api_fb: &str, quiet_flag: bool) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Facebook")
}
get_from_http_api::<ResponseDataFacebook>(url_api_fb, "Facebook", quiet_flag)
}
fn get_spyse_subdomains(url_api_spyse: &str, quiet_flag: bool) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Spyse")
}
get_from_http_api::<ResponseDataSpyse>(url_api_spyse, "Spyse", quiet_flag)
}
fn get_anubisdb_subdomains(url_api_anubisdb: &str, quiet_flag: bool) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("AnubisDB")
}
get_from_http_api::<HashSet<String>>(url_api_anubisdb, "AnubisDB", quiet_flag)
}
fn get_bufferover_subdomains(
url_api_bufferover: &str,
quiet_flag: bool,
) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Bufferover")
}
get_from_http_api::<SubdomainsBufferover>(url_api_bufferover, "Bufferover", quiet_flag)
}
fn get_threatcrowd_subdomains(
url_api_threatcrowd: &str,
quiet_flag: bool,
) -> Option<HashSet<String>> {
if !quiet_flag {
misc::show_searching_msg("Threadcrowd")
}
get_from_http_api::<SubdomainsThreadcrowd>(url_api_threatcrowd, "Threadcrowd", quiet_flag)
}
fn get_virustotal_apikey_subdomains(
url_virustotal_apikey: &str,
quiet_flag: bool,
) -> Option<HashSet<String>> {
if !quiet_flag {
println!("Searching in the Virustotal API using apikey... 🔍");
}
get_from_http_api::<SubdomainsVirustotalApikey>(
url_virustotal_apikey,
"Virustotal API using apikey",
quiet_flag,
)
}
pub fn read_from_file(args: &mut args::Args) -> Result<()> {
let file_name = args.file_name.clone();
if args.unique_output_flag {
misc::check_output_file_exists(&args.file_name)?
}
let file =
File::open(&args.file).with_context(|_| format!("Can't open file 📁 {}", &args.file))?;
for domain in BufReader::new(file).lines().flatten() {
if !domain.is_empty() {
args.target = misc::sanitize_target_string(domain);
args.file_name = if file_name.is_empty() && !args.with_ip {
format!("{}.txt", &args.target)
} else if file_name.is_empty() && args.with_ip {
format!("{}-ip.txt", &args.target)
} else {
file_name.to_string()
};
get_subdomains(args)?
}
}
Ok(())
}
fn write_to_file(data: &str, file_name: &str) -> Result<()> {
let mut output_file = OpenOptions::new()
.append(true)
.create(true)
.open(&file_name)
.with_context(|_| format!("Can't create file 📁 {}", &file_name))?;
output_file.write_all(&format!("{}\n", &data).as_bytes())?;
Ok(())
}
fn get_ip(resolver: &Resolver, domain: &str) -> String {
match resolver.lookup_ip(&domain) {
Ok(ip_address) => ip_address
.iter()
.next()
.expect("An error as ocurred getting the IP address.")
.to_string(),
Err(_) => String::new(),
}
}
fn get_resolver() -> Resolver {
if let Ok(system_resolver) = Resolver::from_system_conf() {
system_resolver
} else if let Ok(quad9_resolver) =
Resolver::new(ResolverConfig::quad9(), ResolverOpts::default())
{
quad9_resolver
} else if let Ok(cloudflare_resolver) =
Resolver::new(ResolverConfig::cloudflare(), ResolverOpts::default())
{
cloudflare_resolver
} else {
Resolver::new(ResolverConfig::default(), ResolverOpts::default()).unwrap()
}
}
fn subdomains_alerts(args: &mut args::Args) -> Result<()> {
if args.with_imported_subdomains {
let imported_subdomains = import_subdomains_from_file(args)?;
for subdomain in imported_subdomains {
args.subdomains.insert(subdomain);
}
}
let connection: postgres::Connection =
Connection::connect(args.postgres_connection.clone(), TlsMode::None)?;
let mut discord_parameters = HashMap::new();
let mut slack_parameters = HashMap::new();
let mut telegram_parameters = HashMap::new();
let mut webhooks_data = HashMap::new();
connection.execute(
"CREATE TABLE IF NOT EXISTS subdomains (
id SERIAL PRIMARY KEY,
name VARCHAR NOT NULL UNIQUE
)",
&[],
)?;
let existing_subdomains = connection.query(
&format!(
"SELECT name FROM subdomains WHERE name LIKE '%{}'",
&args.target
),
&[],
)?;
let existing_subdomains: HashSet<String> = existing_subdomains
.iter()
.map(|row| {
let subdomain = Subdomain {
name: row.get("name"),
};
subdomain.name
})
.collect();
let new_subdomains: HashSet<String> = args
.subdomains
.difference(&existing_subdomains)
.map(|sub| sub.to_string())
.collect();
if args.with_output && !new_subdomains.is_empty() {
let file_name = args.file_name.replace(
&args.file_name.split('.').last().unwrap(),
"new_subdomains.txt",
);
misc::check_output_file_exists(&file_name)?;
for subdomain in &new_subdomains {
write_to_file(subdomain, &file_name)?
}
if !args.quiet_flag {
misc::show_file_location(&args.target, &file_name)
}
}
if !args.discord_webhook.is_empty() {
discord_parameters.insert(
"content",
misc::return_webhook_payload(&new_subdomains, "discord", &args.target),
);
webhooks_data.insert(&args.discord_webhook, discord_parameters);
}
if !args.slack_webhook.is_empty() {
slack_parameters.insert(
"text",
misc::return_webhook_payload(&new_subdomains, "slack", &args.target),
);
webhooks_data.insert(&args.slack_webhook, slack_parameters);
}
if !args.telegram_webhook.is_empty() {
telegram_parameters.insert(
"text",
misc::return_webhook_payload(&new_subdomains, "telegram", &args.target),
);
telegram_parameters.insert("chat_id", args.telegram_chat_id.clone());
telegram_parameters.insert("parse_mode", "HTML".to_string());
webhooks_data.insert(&args.telegram_webhook, telegram_parameters);
}
let mut commit_to_db_counter = 0;
for (webhook, webhooks_payload) in webhooks_data {
if !webhook.is_empty() {
let response = CLIENT.post(webhook).json(&webhooks_payload).send()?;
if response.status().is_success()
|| response.status() == 204
&& !new_subdomains.is_empty()
&& commit_to_db_counter == 0
{
if commit_to_db(&connection, &new_subdomains).is_ok() {
commit_to_db_counter += 1
}
} else if response.status().is_success()
|| response.status() == 204 && new_subdomains.is_empty()
{
} else if !args.quiet_flag {
eprintln!(
"\nAn error occurred when Findomain tried to publish the data to the following webhook {}. \nError description: {}",
webhook, response.status()
)
}
}
}
Ok(())
}
fn commit_to_db(conn: &postgres::Connection, new_subdomains: &HashSet<String>) -> Result<()> {
let prepared_transaction = conn.transaction()?;
for subdomain in new_subdomains {
prepared_transaction.execute("INSERT INTO subdomains (name) VALUES ($1)", &[&subdomain])?;
}
prepared_transaction.commit()?;
Ok(())
}
fn query_findomain_database(args: &mut args::Args) -> Result<()> {
if !args.quiet_flag {
println!(
"Searching subdomains in the Findomain database for the target {} 🔍",
args.target
)
}
let connection: postgres::Connection =
Connection::connect(args.postgres_connection.clone(), TlsMode::None)?;
connection.execute(
"CREATE TABLE IF NOT EXISTS subdomains (
id SERIAL PRIMARY KEY,
name VARCHAR NOT NULL UNIQUE
)",
&[],
)?;
let existing_subdomains = connection.query(
&format!(
"SELECT name FROM subdomains WHERE name LIKE '%{}'",
&args.target
),
&[],
)?;
args.subdomains = existing_subdomains
.iter()
.map(|row| {
let subdomain = Subdomain {
name: row.get("name"),
};
subdomain.name
})
.collect();
misc::works_with_data(args)?;
Ok(())
}
fn import_subdomains_from_file(args: &mut args::Args) -> Result<HashSet<String>> {
let base_target = &format!(".{}", args.target);
let mut subdomains_from_file: HashSet<String> = HashSet::new();
if !args.import_subdomains_from.is_empty() {
for file in &args.import_subdomains_from {
let file =
File::open(&file).with_context(|_| format!("Can't open file 📁 {}", &file))?;
for subdomain in BufReader::new(file).lines().flatten() {
if !subdomain.is_empty()
&& !subdomain.contains('*')
&& !subdomain.starts_with('.')
&& subdomain.ends_with(base_target)
{
subdomains_from_file.insert(subdomain);
}
}
}
}
Ok(subdomains_from_file)
}