Skip to content

Commit

Permalink
Fix permutations url generation
Browse files Browse the repository at this point in the history
  • Loading branch information
cestef committed Feb 23, 2024
1 parent 0015997 commit 8f9f15e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runner/classic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,14 @@ impl Classic {
.map(|c| {
let mut url = self.url.clone();
for word in c {
url = url.replace(
url = url.replacen(
self.opts
.fuzz_key
.clone()
.unwrap_or(DEFAULT_FUZZ_KEY.to_string())
.as_str(),
word,
1,
);
}
url
Expand Down

0 comments on commit 8f9f15e

Please sign in to comment.