Skip to content
This repository has been archived by the owner on Feb 2, 2019. It is now read-only.
/ DynamicValueChallenge Public archive

CTFd Challenge Type which decreases its value after every solve

Notifications You must be signed in to change notification settings

CTFd/DynamicValueChallenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic Value Challenges for CTFd

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.

Installation

REQUIRES: CTFd >= v1.2.0

  1. Clone this repository to CTFd/plugins. It is important that the folder is named DynamicValueChallenge so CTFd can serve the files in the assets directory.

About

CTFd Challenge Type which decreases its value after every solve

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published