feat: add some description for secure multiplayer project (#47004)

* feat: add some description for secure multiplayer project

* Apply suggestions from code review

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
pull/47007/head
Ilenia 2022-07-24 11:43:09 +02:00 committed by GitHub
parent dfd1fb22a0
commit a11b0d4856
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -18,6 +18,17 @@ When you are done, make sure a working demo of your project is hosted somewhere
# --instructions--
Create a secure multiplayer game in which each player can move their avatar, there is at least one collectible item, and the rank of the players is calculated based on their score.
For details consult the tests below.
Make sure that your game is secure! Include these security measures:
- The client should not be able to guess/sniff the MIME type
- Prevent XSS attacks
- Do not cache anything from the website in the client
- The headers say that the site is powered by `PHP 7.4.3`
**Note**: `helmet@^3.21.3` is needed for the user stories. This means you will need to use the previous version of Helmet's docs, for information on how to achieve the user stories.
# --hints--