From c82da6397c3895f24d1335cff5a6b642b22a3ce8 Mon Sep 17 00:00:00 2001 From: Alex <43142871+khyberspache@users.noreply.github.com> Date: Tue, 5 May 2020 14:29:37 -0400 Subject: [PATCH] updating README to call out sudo for install script (#1618) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 60b3b11ae..4bc10fad7 100644 --- a/README.md +++ b/README.md @@ -45,17 +45,17 @@ These requirements are for the computer running the core framework: ## Installation Start by cloning this repository recursively, passing the desired version/release in x.x.x format. This will pull in all available plugins. If you clone master - or any non-release branch - you may experience bugs. -``` +```Bash git clone https://github.com/mitre/caldera.git --recursive --branch x.x.x ``` Next run the install.sh script. See the i[nstall docs](https://caldera.readthedocs.io/en/latest/Install-script.html) for supported operating-systems. -``` -./install.sh +```Bash +sudo ./install.sh ``` Finally, start the server. -``` +```Bash python server.py ``` You can now navigate to 127.0.0.1:8888 in a browser and log in with either red team (red:admin) or blue team (blue:admin) credentials. Once you have everything running, we highly recommend going through the Training plugin to learn the ins-and-outs of the framework.