Skip to content

Commit

Permalink
removed Omisint module
Browse files Browse the repository at this point in the history
  • Loading branch information
LiveGray committed Jun 6, 2024
1 parent a21fe32 commit ea55f59
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 80 deletions.
6 changes: 1 addition & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ mod alienvault;
mod anubis;
mod crtsh;
mod hackertarget;
mod omnisint;
mod threatminer;

mod structs;
Expand Down Expand Up @@ -77,8 +76,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
alienvault,
anubis,
crtsh,
hackertarget,
omnisint,
hackertarget,
threatminer

) = futures::join!(
Expand All @@ -87,7 +85,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
anubis::get_anubis_subdomains(&cleaned_target),
crtsh::get_crt_domains(&cleaned_target),
hackertarget::get_hackertarget_domains(&cleaned_target),
omnisint::get_omnisint_subdomains(&cleaned_target),
threatminer::get_threatminer_subdomains(&cleaned_target),
);

Expand All @@ -99,7 +96,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.chain(anubis.iter().flatten())
.chain(crtsh.iter().flatten())
.chain(hackertarget.iter().flatten())
.chain(omnisint.iter().flatten())
.chain(threatminer.iter().flatten())
.unique_by(|s| &s.url)
.collect();
Expand Down
75 changes: 0 additions & 75 deletions src/omnisint.rs

This file was deleted.

0 comments on commit ea55f59

Please sign in to comment.