NEW: security/feroxbuster

This commit is contained in:
purplerain 2023-08-28 06:39:34 +00:00
parent 90cde7b655
commit 8b0e97a9ad
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
8 changed files with 1516 additions and 0 deletions

View file

@ -0,0 +1,12 @@
Index: src/config/container.rs
--- src/config/container.rs.orig
+++ src/config/container.rs
@@ -1012,7 +1012,7 @@ impl Configuration {
/// Given a configuration file's location and an instance of `Configuration`, read in
/// the config file if found and update the current settings with the settings found therein
- fn parse_and_merge_config(config_file: PathBuf, mut config: &mut Self) -> Result<()> {
+ fn parse_and_merge_config(config_file: PathBuf, config: &mut Self) -> Result<()> {
if config_file.exists() {
// save off a string version of the path before it goes out of scope
let conf_str = config_file.to_str().unwrap_or("").to_string();