FlagForge supports dynamic flags — flags that are unique to each player for a given challenge. Instead of every participant solving the same challenge and getting the same flag, you receive a flag that only works for your account. This prevents players from sharing answers and ensures that every score on the leaderboard reflects genuine effort.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/flagForgeCTF/flagForge/llms.txt
Use this file to discover all available pages before exploring further.
What dynamic flags are
A dynamic flag is generated specifically for you when you start a supported challenge. Two players working on the same challenge see different flags, and submitting another player’s flag will not be accepted by the platform.Not all challenges use dynamic flags. Challenges that do will show a Start Challenge button. Challenges without dynamic flags use a static flag shared by all players.
The four flag types
FlagForge generates dynamic flags in four formats depending on how the challenge is configured.GUID — random UUID
GUID — random UUID
A randomly generated UUID wrapped in the flag format. This flag is completely unique and cannot be predicted or derived from any user-specific information.
TEAM_HASH — user and challenge specific hash
TEAM_HASH — user and challenge specific hash
A hash derived from your user ID and the challenge ID, combined with a secret salt. This flag is deterministic for your account and the specific challenge, but different from every other player’s flag.
LEET — leet-speak transformation
LEET — leet-speak transformation
The challenge’s base text transformed using leet speak, replacing standard characters with visually similar numbers and symbols.
CLEET — complex leet speak
CLEET — complex leet speak
A more aggressive leet-speak transformation that substitutes characters with special symbols in addition to numbers, increasing the variation from the original text.
How dynamic flags work in practice
When a challenge uses a dynamic flag, the flag displayed to you is generated specifically for your account using the challenge’s flag template. You can see your unique flag on the challenge detail page after opening the challenge.View your unique flag
On the challenge detail page, your personal flag is shown. Every player sees a different value for the same challenge.
Solve and submit
Work through the challenge. When you are ready, submit your flag using the submission form. See Flag submission for details.
Dynamic flags are generated from the challenge’s flag template using markers such as
[GUID], [TEAM_HASH], [LEET], or [CLEET]. The template is set by the admin when creating the challenge.