Skip to content

Commit

Permalink
Allow empty wordlists on resume opt
Browse files Browse the repository at this point in the history
  • Loading branch information
cestef committed Mar 12, 2024
1 parent 7851d7b commit b6a6f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub async fn _main(opts: Opts) -> Result<()> {
if opts.url.is_none() && !opts.resume {
bail!("Missing URL");
}
if opts.wordlists.is_empty() {
if opts.wordlists.is_empty() && !opts.resume {
bail!("Missing wordlists");
}

Expand Down

0 comments on commit b6a6f14

Please sign in to comment.