Solveme

SolveMe - Jeopardy CTF Platform
Alternatives To Solveme
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Archery4,708
2 days ago83apache-2.0Python
SQL 审核查询平台
Opensourcepos2,819
15 hours ago303otherPHP
Open Source Point of Sale is a web based point of sale application written in PHP using CodeIgniter framework. It uses MySQL as the data back end and has a Bootstrap 3 based user interface.
Community2,082
a year ago16mitJava
开源论坛、问答系统,现有功能提问、回复、通知、最新、最热、消除零回复功能。功能持续更新中…… 技术栈 Spring、Spring Boot、MyBatis、MySQL/H2、Bootstrap
Springblog1,549
3 years ago18otherJava
A simple blogging system implemented with Spring Boot + Hibernate + MySQL + Bootstrap4.
Php Interview1,134
a year agoPHP
This is the information I prepared for the PHP interview.The notes include PHP, MySql, Linux, etc.
Examination_system862
5 years ago31Java
一个简单的教务查询系统(主要技术SpringMVC + Spring + Mybatis + Shiro + Bootstrap)
Boxbilling706
2 days ago172apache-2.0PHP
BoxBilling - Open source billing and client management software
Bugcatcher452
3 years agoJava
方便产品、开发、测试三方协同管理、测试、监控项目进度和质量,以持续交付。
Web444
2 years ago1Java
适合java新手入门练习的java web个人网站项目,目前主要维护web-mysql和web-psql两个分支。前台包括博客、代码库、文件下载、留言、登录注册、站内搜索、分类目录等功能,后台包括上传文件、博客、代码,编辑、删除文章,修改个人资料等功能,目前暂停开发新功能。网址:https://demo.hemingsheng.cn ,觉得不错的欢迎 star。 手机版网址:
Flycms406
3 years ago3mitJava
FlyCms 是一个类似知乎以问答为基础的完全开源的JAVA语言开发的社交网络建站程序,基于 Spring Boot+Bootstrap3+MyBatis+MySql+Solr +Ehcache应用架构,专注于社区内容的整理、归类和检索,它集合了问答,digg,wiki 等多个程序的优点,帮助用户轻松搭建专业的知识库和在线问答社区。业务模块包括:权限管理,会员管理,角色管理,定时任务管理(调度管理),问答管理,文章管理,分享管理,短信接口管理和邮件系统发送(注册、找回密码、邮件订阅),跨域登录,消息推送,全文检索、前端国际化等等众多模块,等您自己来体验!
Alternatives To Solveme
Select To Compare


Alternative Project Comparisons
Readme

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 [email protected] identified by '{mysql_password}';
>> create database `solveme`;
>> flush privileges;
>> exit;

# download source code
cd /var/www/html
rz
unzip solveme.zip
Popular Mysql Projects
Popular Bootstrap Projects
Popular Data Storage Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Php
Html
Css
Mysql
Bootstrap
Jquery
Capture The Flag