NOTE: This plugin has been integrated into CTFd as of 2.0.0. Please file any issues at the main CTFd repo
It's becoming commonplace in CTF to see challenges whose point values decrease after each solve.
This CTFd plugin creates a dynamic challenge type which implements this behavior. Each dynamic challenge starts with an initial point value and then each solve will decrease the value of the challenge until a minimum point value.
By reducing the value of the challenge on each solve, all users who have previously solved the challenge will have lowered scores. Thus an easier and more solved challenge will naturally have a lower point value than a harder and less solved challenge.
Within CTFd you are free to mix and match regular and dynamic challenges.
The current implementation requires the challenge to keep track of three values:
- Initial - The original point valuation
- Decay - The amount of solves before the challenge will be at the minimum
- Minimum - The lowest possible point valuation
The value decay logic is implemented with the following math:
or in pseudo code:
value = (((minimum - initial)/(decay**2)) * (solve_count**2)) + initial
value = math.ceil(value)
If the number generated is lower than the minimum, the minimum is chosen instead.
A parabolic function is chosen instead of an exponential or logarithmic decay function so that higher valued challenges have a slower drop from their initial value.
REQUIRES: CTFd >= v1.2.0
- Clone this repository to
CTFd/plugins
. It is important that the folder is namedDynamicValueChallenge
so CTFd can serve the files in theassets
directory.