Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bbot/modules/baddns.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Config(BaseModuleConfig):
)

module_threads = 8
deps_pip = ["baddns~=2.3.0"]
deps_pip = ["baddns~=2.4.0"]

def select_modules(self):
selected_submodules = []
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/baddns_direct.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Config(BaseModuleConfig):
)

module_threads = 8
deps_pip = ["baddns~=2.3.0"]
deps_pip = ["baddns~=2.4.0"]

scope_distance_modifier = 1

Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/baddns_zone.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Config(BaseModuleConfig):
)

module_threads = 8
deps_pip = ["baddns~=2.3.0"]
deps_pip = ["baddns~=2.4.0"]

def set_modules(self):
self.enabled_submodules = ["NSEC", "zonetransfer"]
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/badsecrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class badsecrets(BaseModule):
class Config(BaseModuleConfig):
custom_secrets: Optional[str] = Field(None, description="Include custom secrets loaded from a local file")

deps_pip = ["badsecrets~=1.0.0"]
deps_pip = ["badsecrets~=1.1.0"]

async def setup(self):
self.custom_secrets = None
Expand Down
8 changes: 4 additions & 4 deletions bbot/test/test_step_2/module_tests/test_module_badsecrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@ def check(self, module_test, events):
for e in events
), "Vulnerable JWT SecretFound finding was not emitted"

# Safe JWT (IdentifyOnly) should NOT produce any FINDING
assert not any(e.type == "FINDING" and self.safe_jwt in e.data["description"] for e in events), (
"JWT IdentifyOnly finding should have been suppressed"
)
# Safe JWT should NOT produce a badsecrets FINDING
assert not any(
e.type == "FINDING" and e.module == "badsecrets" and self.safe_jwt in e.data["description"] for e in events
), "JWT IdentifyOnly finding should have been suppressed"


class TestBadSecrets_customsecrets(TestBadSecrets):
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies = [
"mmh3>=4.1,<6.0",
"xxhash>=3.5.0,<4",
"setproctitle>=1.3.3,<2",
"yara-python==4.5.2",
"yara-python>=4.5.4,<5",
"pyzmq>=26.0.3,<28.0.0",
"puremagic>=1.28,<2",
"pydantic>=2.12.2,<3",
Expand Down Expand Up @@ -79,7 +79,7 @@ dev = [
"fastapi>=0.115.5,<0.137.0",
"pytest-httpx>=0.35",
"pytest-benchmark>=4,<6",
"baddns~=2.3.0",
"baddns~=2.4.0",
"ruff==0.15.16",
"maturin>=1.4,<2",
]
Expand Down
158 changes: 81 additions & 77 deletions uv.lock

Large diffs are not rendered by default.

Loading