From 9935a44b7865d83049afb1a9c854d6d7c4fa4696 Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Mon, 22 Jun 2020 16:35:55 +0300 Subject: [PATCH 1/2] Added accounts and security page --- docs/content/usage/accounts-and-security.md | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docs/content/usage/accounts-and-security.md diff --git a/docs/content/usage/accounts-and-security.md b/docs/content/usage/accounts-and-security.md new file mode 100644 index 000000000..530ead84b --- /dev/null +++ b/docs/content/usage/accounts-and-security.md @@ -0,0 +1,28 @@ +--- +title: "Accounts and Security" +date: 2020-06-22T15:36:56+03:00 +draft: true +--- + +## Security in InfectionMonkey + +The first time you launch Monkey Island (InfectionMonkey CC server), you'll be prompted to +create an account and secure your island. After your account is created, the server will only +be accessible via the credentials you chose. + +If you want island to be accessible without credentials press "I want anyone to access the island". +This is an insecure option though and should only be used in development. + +## Resetting account credentials + +To reset credentials edit `monkey_island\cc\server_config.json` +by deleting `user` and `password_hash` variables. Then restart Island server and you should be +prompted with registration form. + +Example `server_config.json` for account reset: +``` +{ + "server_config": "password", + "deployment": "develop" +} +``` From 0b7fef8c23b4d36ac18cc04c756bb775e8d2e0bc Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Tue, 23 Jun 2020 12:56:34 +0300 Subject: [PATCH 2/2] Typos, draft version set to false, added language indication to code fragment --- docs/content/usage/accounts-and-security.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/usage/accounts-and-security.md b/docs/content/usage/accounts-and-security.md index 530ead84b..57320b64b 100644 --- a/docs/content/usage/accounts-and-security.md +++ b/docs/content/usage/accounts-and-security.md @@ -1,12 +1,12 @@ --- title: "Accounts and Security" date: 2020-06-22T15:36:56+03:00 -draft: true +draft: false --- -## Security in InfectionMonkey +## Security in Infection Monkey -The first time you launch Monkey Island (InfectionMonkey CC server), you'll be prompted to +The first time you launch Monkey Island (Infection Monkey CC server), you'll be prompted to create an account and secure your island. After your account is created, the server will only be accessible via the credentials you chose. @@ -20,7 +20,7 @@ by deleting `user` and `password_hash` variables. Then restart Island server and prompted with registration form. Example `server_config.json` for account reset: -``` +```json { "server_config": "password", "deployment": "develop"