Skip to content

Commit 23dac81

Browse files
committed
Update BloodHound CE password in integration and unit tests
This commit updates the BloodHound CE password from "Bloodhound123!" to "Adscan4thewin!" in multiple integration and unit test files. This change ensures consistency across tests and enhances security by using a more secure default password.
1 parent dbc2f86 commit 23dac81

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/integration/test_ce_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def ce_client(self):
1616
"""Create BloodHound CE client for integration tests"""
1717
ce_url = os.getenv("BLOODHOUND_CE_URL", "http://localhost:8080")
1818
ce_user = os.getenv("BLOODHOUND_CE_USER", "admin")
19-
ce_password = os.getenv("BLOODHOUND_CE_PASSWORD", "Bloodhound123!")
19+
ce_password = os.getenv("BLOODHOUND_CE_PASSWORD", "Adscan4thewin!")
2020

2121
client = BloodHoundCEClient(
2222
base_url=ce_url,

tests/integration/test_ce_real_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def ce_client(self):
1616
"""Create BloodHound CE client for integration tests"""
1717
ce_url = os.getenv("BLOODHOUND_CE_URL", "http://localhost:8080")
1818
ce_user = os.getenv("BLOODHOUND_CE_USER", "admin")
19-
ce_password = os.getenv("BLOODHOUND_CE_PASSWORD", "Bloodhound123!")
19+
ce_password = os.getenv("BLOODHOUND_CE_PASSWORD", "Adscan4thewin!")
2020

2121
client = BloodHoundCEClient(
2222
base_url=ce_url,

tests/unit/test_ce_queries.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ def close(self):
750750
password=None,
751751
base_url="http://localhost:8080",
752752
username="admin",
753-
ce_password="Bloodhound123!",
753+
ce_password="Adscan4thewin!",
754754
debug=False,
755755
verbose=False,
756756
domain="essos.local",
@@ -807,7 +807,7 @@ def close(self):
807807
password=None,
808808
base_url="http://localhost:8080",
809809
username="admin",
810-
ce_password="Bloodhound123!",
810+
ce_password="Adscan4thewin!",
811811
debug=False,
812812
verbose=False,
813813
domain="sevenkingdoms.local",

0 commit comments

Comments
 (0)