Giter Club home page Giter Club logo

ptcoresec-scoreboard-ctf's Introduction

ptcoresec-scoreboard-ctf

========================

A scoreboard used for CTF jeopardy style events

This is a scoreboard that can be used for jeopardy style tournaments. It was developed by us to be used in our capture the flag security events.

INSTALLATION (Version 0.1)

You need to have NodeJS, Redis and MySQL installed:

We have tested the scoreboard with Ubuntu 12.04 64 bits, NodeJS versions 0.6.12 and 0.8.1, Redis version 2.2.12 and 2.4.15.


sudo apt-get update
sudo apt-get install nodejs redis-server mysql-server

In the folder DB you will find two SQL scripts to import, tournament.sql (Complete database) and salts.sql (Password salts).


cd BD
mysql -u username -p < tournament.sql 
mysql -u username -p < salts.sql 

Go back to the main folder and configure the config.js file to use your MySQL database, it will look like this,


var config = {};

config.db = {};
config.dbHashes = {};

// Complete DB
config.db.host = ''; // <-- Insert host
config.db.user = ''; // <-- Insert user
config.db.password = ''; // <-- Insert password
//Don't Change.
config.db.database = 'torneio';

// Password Salt DB
config.dbHashes.host = ''; // <-- Insert host
config.dbHashes.user = ''; // <-- Insert user
config.dbHashes.password = ''; // <-- Insert password
//Don't Change.
config.dbHashes.database = 'passsalts';

module.exports = config;

We will now generate keys to be used for HTTPS.
You can generate the privatekey.pem and certificate.pem files using the following commands:


cd keys
openssl genrsa -out privatekey.pem 1024 
openssl req -new -key privatekey.pem -out certrequest.csr 
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem

Now you just need to run node.


cd ptcoresec-scoreboard-ctf
node app.js

You can then browse to https://server-address:3000 and login with username Administrator and password 123456

ptcoresec-scoreboard-ctf's People

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.