Skip to content

Commit

Permalink
msg cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidsec committed Jul 14, 2023
1 parent 46a320b commit c069dc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bbot/modules/deadly/ffuf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async def setup(self):
self.verbose(f"Generated dynamic wordlist with length [{str(tempfile_len)}]")
try:
self.extensions = parse_list_string(self.config.get("extensions", ""))
self.critical(f"Using custom extensions: [{','.join(self.extensions)}]")
self.debug(f"Using custom extensions: [{','.join(self.extensions)}]")
except ValueError as e:
self.warning(f"Error parsing extensions: {e}")
return False
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/ffuf_shortnames.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def setup(self):

try:
self.extensions = parse_list_string(self.config.get("extensions", ""))
self.critical(f"Using custom extensions: [{','.join(self.extensions)}]")
self.debug(f"Using custom extensions: [{','.join(self.extensions)}]")
except ValueError as e:
self.warning(f"Error parsing extensions: {e}")
return False
Expand Down

0 comments on commit c069dc1

Please sign in to comment.