项目作者: safflower

项目描述 :
SolveMe - Jeopardy CTF Platform (for wargame)
高级语言: PHP
项目地址: git://github.com/safflower/solveme.git
创建时间: 2017-04-02T18:09:36Z
项目社区:https://github.com/safflower/solveme

开源协议:MIT License

下载


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?

  1. # in main server
  2. docker run -it -p {website_port}:80 --name solveme ubuntu /bin/bash
  1. # in docker container
  2. apt update
  3. apt install -y vim lrzsz unzip
  4. # apache
  5. apt install -y apache2
  6. apache2 -t
  7. a2enmod rewrite
  8. vim /etc/apache2/sites-available/000-default.conf
  9. >> <Directory /var/www></Directory>
  10. >> Options Indexes FollowSymLinks MultiViews
  11. >> AllowOverride All
  12. >> Order allow,deny
  13. >> allow from all
  14. >> </Directory>
  15. service apache2 start
  16. # php
  17. apt install -y php7.2 php-mbstring php-pdo-mysql
  18. php -v
  19. vim /etc/php/7.2/apache2/php.ini
  20. # plz enable `mbstring` and `pdo-mysql`
  21. # mysql
  22. apt install -y mariadb-server
  23. service mysql start
  24. mysql_secure_installation
  25. mysql -u root -p
  26. >> grant all privileges on *.* to root@localhost identified by '{mysql_password}';
  27. >> create database `solveme`;
  28. >> flush privileges;
  29. >> exit;
  30. # download source code
  31. cd /var/www/html
  32. rz
  33. unzip solveme.zip