Skip to content

Commit ab42ab3

Browse files
committed
Fix test module refs: httpx → http for blasthttp migration
1 parent 9fc3837 commit ab42ab3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

bbot/test/test_step_2/module_tests/test_module_excavate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1582,7 +1582,7 @@ class TestExcavateRedirectParameterScope(ModuleTestBase):
15821582
"""
15831583

15841584
targets = ["http://127.0.0.1:8888/"]
1585-
modules_overrides = ["httpx", "excavate", "hunt"]
1585+
modules_overrides = ["http", "excavate", "hunt"]
15861586

15871587
async def setup_before_prep(self, module_test):
15881588
module_test.httpserver.expect_request("/").respond_with_data(

bbot/test/test_step_2/module_tests/test_module_lightfuzz.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2373,7 +2373,7 @@ class Test_Lightfuzz_envelope_isolation_paddingoracle_reflecting(Test_Lightfuzz_
23732373
# ECB Mode Detection: ciphertext with repeated 16-byte blocks (A+B+A+B pattern)
23742374
class Test_Lightfuzz_ECBDetection(ModuleTestBase):
23752375
targets = ["http://127.0.0.1:8888/"]
2376-
modules_overrides = ["httpx", "excavate", "lightfuzz"]
2376+
modules_overrides = ["http", "excavate", "lightfuzz"]
23772377
config_overrides = {
23782378
"interactsh_disable": True,
23792379
"modules": {
@@ -2417,7 +2417,7 @@ def check(self, module_test, events):
24172417
# ECB Negative: all unique blocks, should NOT detect ECB
24182418
class Test_Lightfuzz_ECBDetection_Negative(ModuleTestBase):
24192419
targets = ["http://127.0.0.1:8888/"]
2420-
modules_overrides = ["httpx", "excavate", "lightfuzz"]
2420+
modules_overrides = ["http", "excavate", "lightfuzz"]
24212421
config_overrides = {
24222422
"interactsh_disable": True,
24232423
"modules": {
@@ -2463,7 +2463,7 @@ def check(self, module_test, events):
24632463
# CBC Bit-Flipping Detection: server returns different responses for different byte-position mutations
24642464
class Test_Lightfuzz_CBCBitflipDetection(ModuleTestBase):
24652465
targets = ["http://127.0.0.1:8888"]
2466-
modules_overrides = ["httpx", "excavate", "lightfuzz"]
2466+
modules_overrides = ["http", "excavate", "lightfuzz"]
24672467
config_overrides = {
24682468
"interactsh_disable": True,
24692469
"modules": {
@@ -2522,7 +2522,7 @@ def check(self, module_test, events):
25222522
# CBC Bit-Flipping Negative: server returns identical response regardless of mutation position
25232523
class Test_Lightfuzz_CBCBitflipDetection_Negative(ModuleTestBase):
25242524
targets = ["http://127.0.0.1:8888"]
2525-
modules_overrides = ["httpx", "excavate", "lightfuzz"]
2525+
modules_overrides = ["http", "excavate", "lightfuzz"]
25262526
config_overrides = {
25272527
"interactsh_disable": True,
25282528
"modules": {
@@ -2563,7 +2563,7 @@ def check(self, module_test, events):
25632563
# CBC bit-flip probes still produce different responses → detected.
25642564
class Test_Lightfuzz_CBCBitflipDetection_NoPaddingOracle(ModuleTestBase):
25652565
targets = ["http://127.0.0.1:8888"]
2566-
modules_overrides = ["httpx", "excavate", "lightfuzz"]
2566+
modules_overrides = ["http", "excavate", "lightfuzz"]
25672567
config_overrides = {
25682568
"interactsh_disable": True,
25692569
"modules": {

0 commit comments

Comments
 (0)