Monarch Of The Hill - base infrastructure for computer-based puzzle contests
Go to file
Donaldson 33665a39fc Fixing up unit test issues 2020-10-15 18:30:26 -05:00
.github Oops, didn't correctly reformat the source Github issue template 2020-10-14 13:32:13 -05:00
.vscode mkpuzzle working in dev mode 2020-09-11 13:03:19 -06:00
build Fixed up Containerfile 2020-09-18 17:48:57 -06:00
cmd all tests passing again + editor fail 2020-10-14 10:05:53 -06:00
contrib Fixing up unit test issues 2020-10-15 18:30:26 -05:00
docs fix typo 2020-10-14 09:12:06 -06:00
example-puzzles Standardize cat/puzzle command args 2020-09-14 18:23:56 -06:00
pkg transpiler can now create mothballs 2020-10-12 17:44:44 -06:00
theme Fix bug with registration on actual filesystems 2020-10-13 19:48:37 -06:00
.dockerignore oops 2020-09-18 12:58:35 -06:00
.gitignore Housekeeping 2020-09-17 19:35:46 -06:00
CHANGELOG.md Only anonymize team IDs once per team 2020-10-14 09:46:51 -06:00
LICENSE.md License formatting 2019-08-25 07:20:17 -06:00
README.md Simplify README 2020-09-18 18:19:22 -06:00
go.mod Housekeeping 2020-09-17 19:35:46 -06:00
go.sum Housekeeping 2020-09-17 19:35:46 -06:00

README.md

Dirtbags Monarch Of The Hill Server

Build badge Go report card

Monarch Of The Hill (MOTH) is a puzzle server. We (the authors) have used it for instructional and contest events called "Tracer FIRE", "Project 2", "HACK", "Queen Of The Hill", "Cyber Spark", "Cyber Fire", "Cyber Fire Puzzles", and "Cyber Fire Foundry".

Information about these events is at http://dirtbags.net/contest/

A few things make MOTH different than other Capture The Flag server projects:

  • Once any team opens a puzzle, all teams can work on it (high fives to DC949/Orange County for this idea)
  • No penalties for wrong answers
  • No time-based point deductions (if you're faster, you get to answer more puzzles)
  • No internal notion of ranking or score: it only stores an event log, and scoreboards parse it however they want
  • All puzzles must be compiled to static content before it can be served up
  • The server does very little: most functionality is in client-side JavaScript

You can read more about why we made these decisions in philosophy.

Run in demonstration mode

docker run --rm -it -p 8080:8080 dirtbags/moth-devel

Then open http://localhost:8080/ and check out the example puzzles.

Documentation

  • Development: The development server lets you create and test categories, and compile mothballs.
  • Getting Started: This guide will get you started with a production server.
  • Administration: How to set hours, and change setup.

Contributing to MOTH

Please read our contributing guide.