All Projects → plzdonotsay → solveme

plzdonotsay / solveme

Licence: MIT license
SolveMe - Jeopardy CTF Platform

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to solveme

bamboofox-website
☕ Bamboofox CTF training platform
Stars: ✭ 21 (-58.82%)
Mutual labels:  ctf, ctf-framework, ctf-platform, ctf-challenges
Pwntools
CTF framework and exploit development library
Stars: ✭ 8,585 (+16733.33%)
Mutual labels:  ctf, ctf-framework, wargame
fhq-server
This is an open source platform for competitions of computer security.
Stars: ✭ 33 (-35.29%)
Mutual labels:  ctf, ctf-platform, ctf-challenges
CTF-Game
Capture the flag Game
Stars: ✭ 14 (-72.55%)
Mutual labels:  ctf, ctf-framework, ctf-platform
eth-challenge-base
xinetd docker for building ethereum contract challenges
Stars: ✭ 74 (+45.1%)
Mutual labels:  ctf, ctf-framework, ctf-challenges
ForcAD
Pure-python distributable Attack-Defence CTF platform, created to be easily set up.
Stars: ✭ 77 (+50.98%)
Mutual labels:  ctf, ctf-platform
Mbe
Course materials for Modern Binary Exploitation by RPISEC
Stars: ✭ 4,674 (+9064.71%)
Mutual labels:  ctf, wargame
Fbctf
Platform to host Capture the Flag competitions
Stars: ✭ 6,407 (+12462.75%)
Mutual labels:  ctf, ctf-framework
gogo
GoGo - Free Bootstrap template for chat bot landing page
Stars: ✭ 45 (-11.76%)
Mutual labels:  css3, bootstrap3
obsidian
Writeups for CTF challenges.
Stars: ✭ 47 (-7.84%)
Mutual labels:  ctf, ctf-challenges
Privilege Escalation
This cheasheet is aimed at the CTF Players and Beginners to help them understand the fundamentals of Privilege Escalation with examples.
Stars: ✭ 2,117 (+4050.98%)
Mutual labels:  ctf, ctf-challenges
Bootstrap
Open Source JS plugins
Stars: ✭ 13 (-74.51%)
Mutual labels:  css3, bootstrap3
PTE
Platform Test Edition
Stars: ✭ 18 (-64.71%)
Mutual labels:  ctf, ctf-platform
YuktiCTF
A Game platform to spread awareness among school and university students about various cyber attacks.
Stars: ✭ 11 (-78.43%)
Mutual labels:  ctf, ctf-framework
jerseyctf-2021-challenges
JerseyCTF 2021
Stars: ✭ 22 (-56.86%)
Mutual labels:  ctf, ctf-challenges
NSP
A Social Network that brings engineer's from all fields together to collaborate 🌐
Stars: ✭ 28 (-45.1%)
Mutual labels:  css3, bootstrap3
Google Ctf
Google CTF
Stars: ✭ 2,591 (+4980.39%)
Mutual labels:  ctf, ctf-challenges
CTF-Challenges
Capture the flag challenges
Stars: ✭ 41 (-19.61%)
Mutual labels:  ctf, ctf-challenges
My-CTF-Challenges
🏴 🏴 🏴
Stars: ✭ 65 (+27.45%)
Mutual labels:  ctf, ctf-challenges
2020p
WeCTF 2020+ Source Code & Organizer's Writeup
Stars: ✭ 22 (-56.86%)
Mutual labels:  ctf, ctf-challenges

Rawsec's CyberSecurity Inventory GitHub stars GitHub license

SolveMe

main

It's jeopardy style wargame website called SolveMe.

This source code tested on PHP 7.2 and MariaDB 10.1.40.

Official Website: http://solveme.kr/

Demo Website: http://211.239.124.233:20813/

How to set-up?

# in main server
docker run -it -p {website_port}:80 --name solveme ubuntu /bin/bash
# in docker container
apt update
apt install -y vim lrzsz unzip

# apache
apt install -y apache2
apache2 -t
a2enmod rewrite
vim /etc/apache2/sites-available/000-default.conf
>> <Directory /var/www/>
>>     Options Indexes FollowSymLinks MultiViews
>>     AllowOverride All
>>     Order allow,deny
>>     allow from all
>> </Directory>
service apache2 start

# php
apt install -y php7.2 php-mbstring php-pdo-mysql
php -v
vim /etc/php/7.2/apache2/php.ini
# plz enable `mbstring` and `pdo-mysql`

# mysql
apt install -y mariadb-server
service mysql start
mysql_secure_installation
mysql -u root -p
>> grant all privileges on *.* to root@localhost identified by '{mysql_password}';
>> create database `solveme`;
>> flush privileges;
>> exit;

# download source code
cd /var/www/html
rz
unzip solveme.zip
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].