fixed replay proxy issue

This commit is contained in:
epi
2020-12-08 20:37:07 -06:00
parent ab5fbeb6ed
commit f3bf05ab9b
3 changed files with 4 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "feroxbuster"
version = "1.9.0"
version = "1.9.1"
authors = ["Ben 'epi' Risher <epibar052@gmail.com>"]
license = "MIT"
edition = "2018"

View File

@@ -436,6 +436,9 @@ impl Configuration {
// merge the cli options into the config file options and return the result
Self::merge_config(&mut config, cli_config);
// rebuild clients is the last step in either code branch
Self::try_rebuild_clients(&mut config);
config
}
@@ -649,8 +652,6 @@ impl Configuration {
}
}
Self::try_rebuild_clients(&mut config);
config
}

View File

@@ -396,8 +396,6 @@ fn scanner_single_request_replayed_to_proxy() -> Result<(), Box<dyn std::error::
.arg(format!("http://{}", proxy.address().to_string()))
.arg("--replay-codes")
.arg("200")
.arg("--debug-log")
.arg("stuff")
.unwrap();
cmd.assert()