Scoreboard for jeopardy-style CTFs.
Fundamental principle: if henhouse is not helping you make jeopardy-style CTF easily, then there is a bug in henhouse.
Built for Ubuntu 16.04.
$ curl -s https://packagecloud.io/install/repositories/jollheef/henhouse/script.deb.sh | sudo bash
$ sudo apt install henhouse
$ apt install golang build-essential binutils upx-ucl
$ export GOPATH=$(realpath ./) && go get github.com/jollheef/henhouse/...
$ cd ${GOPATH}/src/github.com/jollheef/henhouse
$ ./package.sh
$ sudo emerge dev-lang/go dev-db/postgresql
$ sudo apt install golang postgresql
First you need set GOPATH environment variable.
$ export GOPATH=$(realpath ./)
After you need download and build henhouse with depends.
$ go get github.com/jollheef/henhouse
$ sudo psql -U postgres
postgres=# CREATE DATABASE henhouse;
postgres=# CREATE USER henhouse WITH password 'STRENGTH_PASSWORD';
postgres=# GRANT ALL privileges ON DATABASE henhouse TO henhouse;
After that you need to fix 'connection' parameter in configuration file. (And other parameters, of course)
Now, run it!
$ ${GOPATH}/bin/henhouse ${GOPATH}/src/github.com/jollheef/henhouse/config/henhouse.toml --reinit