Skip to content

Commit e68954f

Browse files
fix: platform hyperlink
1 parent 5e919bd commit e68954f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airtbench/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async def check_flag_api(challenge_id: str, flag: str, api_key: str) -> bool:
108108
"""Validate flag via the Crucible API instead of local decryption."""
109109
try:
110110
async with aiohttp.ClientSession() as session:
111-
url = f"{os.environ.get('CRUCIBLE_URL', 'https://crucible.dreadnode.io')}/api/challenges/{challenge_id}/submit-flag"
111+
url = f"{os.environ.get('CRUCIBLE_URL', 'https://platform.dreadnode.io')}/api/challenges/{challenge_id}/submit-flag"
112112
headers = {"X-API-Key": api_key}
113113
payload = {"challenge": challenge_id, "flag": flag}
114114

0 commit comments

Comments
 (0)