Multipot is a small Python-based web application honeypot. It makes it easy to set up fake web applications and record the requests given to them in an easily readable SQLite database. The built-in web analysis tool allows some basic analysis of the gathered requests.
The following pictures show examples of the built-in analysis capabilities of Multipot.
- Web application honeypot
- Saves client requests and server responses in SQLite database
- Built-in web GUI analysis tool
- Use the SQLite database with your favorite tool for further analyses
- Detailed information on gathered IP addresses
- Utilizes free http://ip-api.com for whois/geoip information (free version doesn't allow SSL access)
- Extensible, create your own fake pages
pip3 install flask
pip3 install flask-sqlalchemy
pip3 install requests
For basic testing, the app can now be run with:
$ python3 multipotapp.py
By default the server is only reachable on localhost as the development server is not designed to be very stable/secure. You can change that setting in multipot/multipotapp.py
and set the app.run()
to app.run(host='0.0.0.0')
to run on your machines IP address.
Go to the URL below to enter the dashboard:
http://<server>:5000/analysis/index?token=verysecret
This should not be used in production. Please follow the more detailed installation procedure below.
http://flask.pocoo.org/docs/1.0/deploying/
For example mod_wsgi via Apache:
http://flask.pocoo.org/docs/1.0/deploying/mod_wsgi/
# Python 3:
$ sudo apt-get install libapache2-mod-wsgi-py3
Create the yourapplication.wsgi
file. Depending on your setup, adjust Python load path in it.
import sys
sys.path.insert(0, '/path/to/the/application')
from yourapplication import app as application
Configure Apache:
<VirtualHost *>
ServerName example.com
WSGIDaemonProcess yourapplication user=user1 group=group1 threads=5
WSGIScriptAlias / /var/www/yourapplication/yourapplication.wsgi
<Directory /var/www/yourapplication>
WSGIProcessGroup yourapplication
WSGIApplicationGroup %{GLOBAL}
# old syntax:
# Order deny,allow
# Allow from all
# new syntax:
Require all granted
</Directory>
</VirtualHost>
Use the provided empty app.db
or generate a new basic app.db
database:
$ python3 app/setup_db.py
Have a look at the config.py
for configurations.
Change your secret ANALYSIS_TOKEN
! Otherwise others with access to your webserver can access the API and analysis sections of the honeypot.
After the setup browse to the following URL to see an overview on the recorded requests and their related responses:
http(s)://<server>/analysis/index?token=<ANALYSIS_TOKEN>
- Save your HTML skeleton in
app/static/fake-sites/newfakeapp/newfakeapp.html
- Create new or modify route in
app/routes.py