-
Notifications
You must be signed in to change notification settings - Fork 24
Setup
Sleepy Puppy uses: Flask + Gunicorn + Nginx
##Prerequisites##
- Python2.7
- pip
- git
##Test Setup## This test install section will get you setup quickly in a non-production environment.
###Grab the repo
git clone https://github.com/sbehrens/sleepy-puppy.git
###Setup a Virtual Environment###
sudo pip install virtualenv
cd sleepy-puppy/
virtualenv sleepyenv
source sleepyenv/bin/activate
###Install the required dependencies
python setup.py install
###Create database, seed database, create default login with 'admin' user
python manage.py setup_sleepy_puppy
This will initialize the database, populate the database with example Payloads, PuppyScripts, and an Assessment you can use. It will also create a default user account 'admin' where you must specify the password.
If you want to run each of these steps manually you can run:
python manage.py create_db
python manage.py create_login admin
python manage.py create_bootstrap_assessment
##Test Startup## If you are just testing out Sleepy Puppy, use the following to startup the environment via command line.
###Source Virtual Environment###
cd sleepy-puppy/
source sleepyenv/bin/activate
###Run the Flask Application###
python manage.py runserver --host 0.0.0.0 --port 8000
Now that Sleepy Puppy is running, visit the host at: http://127.0.0.1:8000 and log in using the default credentials admin/[the password you used].
Take a look at the Tutorial for instructions on how to try it out!
##Production Setup# The following optional steps can be performed to configure Sleepy Puppy for a more production deployment.
The production setup includes Nginx, Gunicorn, and SSL configuration. Gunicorn should have been installed when you ran the setup.py
file. The following steps assume you are running an Ubuntu system. You will want to use a certificate that has been signed by a trusted certificate authority.
We use the CDN notation when generating xss payloads (// vs http://) to save space. CDN notation resolves to the current scheme, so if you are injecting into a page hosted over ssl, the callbacks will have to be on a web server that supports ssl.
Sleepy Puppy will not work with self-signed certificates, as browsers will not load content from self-signed certs.
Once you have generated a trusted certificate pair, run the following commands to place the pub/priv keys in the appropriate directories:
sudo cp server.crt /etc/ssl/certs
sudo cp server.key /etc/ssl/private
Once these two files are in your /etc/ssl/certs and /etc/ssl/private, you are ready to move on in this guide.
Sketchy uses Gunicorn to serve up content on its internal 127.0.0.1 address. Nginx listens on 0.0.0.0 and proxies connections to Gunicorn for processing.
cd /app/sleepy-puppy
gunicorn -w 4 -b 0.0.0.0:8000 sleepypuppy:app
on ubuntu:
sudo apt-get install nginx
on osx:
brew install nginx
sudo mkdir -p /var/log/nginx/
sudo touch /var/log/nginx/access.log
sudo touch /var/log/nginx/error.log
You will need to modify the following directive to the path where you have pulled Sleepy Puppy in the example sleepy-puppy.conf file below:
root /apps/sleepy-puppy;
Next you can save the config file below to:
/etc/nginx/sites-available/sleepy-puppy.conf
server {
listen 0.0.0.0:443 ssl;
ssl_certificate /usr/local/etc/openssl/certs/server.crt;
ssl_certificate_key /usr/local/etc/openssl/certs/server.key;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
root /apps/sketchy;
location / {
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://127.0.0.1:8000;
proxy_connect_timeout 30;
proxy_read_timeout 40;
}
}
server {
listen 80;
server_name 127.0.0.1;
location /callbacks {
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://127.0.0.1:8000/callbacks;
proxy_connect_timeout 30;
proxy_read_timeout 40;
}
location /up {
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://127.0.0.1:8000/up;
proxy_connect_timeout 30;
proxy_read_timeout 40;
}
location / {
return 301 https://$server_name$request_uri;
}
}
Symlink the sites-available file to the sites-enabled folder:
sudo ln -s /etc/nginx/sites-available/sleepy-puppy.conf /etc/nginx/sites-enabled/sleepy-puppy.conf
Delete the default configuration:
sudo rm /etc/nginx/sites-enabled/default
Restart nginx:
sudo service nginx restart
###Validate Setup Visit https://127.0.0.1:443 and confirm you can log in.
##Production Startup
If you reboot, nginx won't know how to start gunicorn. Try Supervisor:
sudo pip install supervisor
Here is an example configuration file (supervisord.conf). Make sure your change the user directive to a lower privileged user:
[unix_http_server]
file=/tmp/supervisor.sock
chmod=0700
[supervisord]
logfile = /var/log/supervisord.log
logfile_maxbytes = 50MB
logfile_backups=10
loglevel = info
pidfile = /tmp/supervisord.pid
nodaemon = False
minfds = 1024
minprocs = 200
umask = 022
identifier = supervisor
directory = /tmp
nocleanup = true
childlogdir = /tmp
[program:sleepypuppy]
command = gunicorn sleepypuppy:app
directory = /PATH_TO_SLEEPY-PUPPY
user = root
You can start supervisor and use the configuration file included with Sleepy-Puppy (after modifying command paths and users):
sudo -s cd /path/to/sleepy-puppy source sleepyenv/bin/activate cd /path/to/sleepy-puppy/supervisor supervisord -c supervisord.ini
If something is not starting correctly, you can view the Supervisor log file located at /var/log/supervisord.log
.
You can double check everything is working by visiting:
If you are presented with a login page, you are set!
Now that your production environment is setup, lets give the Tutorial a try!
deprecated