Skip to content

Commit

Permalink
implementing second try catch for wrong attackinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
SirGankalot committed May 22, 2024
1 parent b259681 commit f04bcb3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions checker/src/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,10 @@ async def exploit_test_1(
logger: LoggerAdapter,
searcher: FlagSearcher,
) -> None:
if "@example.com" not in task.attack_info:
print("attack_info is good")
else:
return None
print("attacke hier")
print(task.attack_info)
print(task.flag_hash)
Expand Down

0 comments on commit f04bcb3

Please sign in to comment.