Skip to content

Commit

Permalink
making nuclei mode case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidsec committed Feb 8, 2024
1 parent f498a97 commit 1a0ebf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbot/modules/deadly/nuclei.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async def setup(self):
else:
self.warning("Error running nuclei template update command")
self.proxy = self.scan.config.get("http_proxy", "")
self.mode = self.config.get("mode", "severe")
self.mode = self.config.get("mode", "severe").lower()
self.ratelimit = int(self.config.get("ratelimit", 150))
self.concurrency = int(self.config.get("concurrency", 25))
self.budget = int(self.config.get("budget", 1))
Expand Down

0 comments on commit 1a0ebf2

Please sign in to comment.