We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed16cd9 commit 22aa63aCopy full SHA for 22aa63a
checker/src/checker.py
@@ -572,9 +572,9 @@ async def exploit_embed(
572
flag += closest_char
573
574
if flag:
575
- unformatted_flag = await unformat_flag(flag)
576
- if unformatted_flag.endswith("FAKE"):
+ if flag.endswith("FAKE"):
577
continue
+ unformatted_flag = await unformat_flag(flag)
578
logger.debug(f"Flag found. Original: {flag} Unformatted: {unformatted_flag}")
579
return unformatted_flag
580
0 commit comments