Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/honeypot-project/server
Server that we made to be able to login, submit CTF flags and more
https://github.com/honeypot-project/server
java vertx
Last synced: about 2 months ago
JSON representation
Server that we made to be able to login, submit CTF flags and more
- Host: GitHub
- URL: https://github.com/honeypot-project/server
- Owner: honeypot-project
- License: unlicense
- Created: 2023-03-08T10:23:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-11T14:10:58.000Z (almost 2 years ago)
- Last Synced: 2024-09-29T13:43:02.931Z (3 months ago)
- Topics: java, vertx
- Language: Java
- Homepage:
- Size: 17.6 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE.md
Awesome Lists containing this project
README
= Honeypot service
== Built with vert.ximage:https://img.shields.io/badge/vert.x-4.3.7-red.svg[link="https://vertx.io"]
This application was originally a school project.
Its goal is to manage users and allow them to submit flags to a CTF challenge.Users can:
* Upload a picture
* Submit flagsAdministrators can:
* Disable/enable users
* See their solved challenges
* Make users admins== Before running
Please change the username and password in the `src/main/resources/config/sql.properties` file before running
The default database will be created automatically if it doesn't exist.== Building
To launch your tests:
```
./gradlew clean test
```To package your application:
```
./gradlew clean assemble
```To run your application:
```
./gradlew clean run
```== Help
* https://vertx.io/docs/[Vert.x Documentation]
* https://stackoverflow.com/questions/tagged/vert.x?sort=newest&pageSize=15[Vert.x Stack Overflow]
* https://groups.google.com/forum/?fromgroups#!forum/vertx[Vert.x User Group]
* https://gitter.im/eclipse-vertx/vertx-users[Vert.x Gitter]