Metadata-Version: 2.1
Name: Conpot
Version: 0.5.2
Summary: Conpot is an ICS honeypot with the goal to collect intelligence about the motives
    and methods of adversaries targeting industrial control systems
Home-page: http://conpot.org
Author: MushMush Foundation
Author-email: glastopf@public.honeynet.org
License: GPL 2
Keywords: ICS SCADA honeypot
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python
Classifier: Topic :: Security
Requires-Dist: gevent (>=1.0)
Requires-Dist: pysnmp
Requires-Dist: pysmi
Requires-Dist: lxml
Requires-Dist: bottle
Requires-Dist: jinja2
Requires-Dist: beautifulsoup4
Requires-Dist: requests
Requires-Dist: sphinx
Requires-Dist: libtaxii (>=1.1.0)
Requires-Dist: MySQL-python
Requires-Dist: xlrd
Requires-Dist: crc16
Requires-Dist: natsort
Requires-Dist: scapy
Requires-Dist: enum34
Requires-Dist: hpfeeds
Requires-Dist: modbus-tk
Requires-Dist: stix-validator
Requires-Dist: stix
Requires-Dist: cybox
Requires-Dist: bacpypes (==0.16.1)
Requires-Dist: pyghmi
Requires-Dist: mixbox
Requires-Dist: modbus-tk
Requires-Dist: cpppo
Requires-Dist: pycrypto

## About

Conpot is an ICS honeypot with the goal to collect intelligence about the motives and
methods of adversaries targeting industrial control systems

## Documentation

The build of the documentations [source](https://github.com/mushorg/conpot/tree/master/docs/source) can be found [here](https://conpot.readthedocs.io/en/latest/). There you will also find the instructions on how to [install](https://conpot.readthedocs.io/en/latest/installation/ubuntu.html) conpot and the [FAQ](https://conpot.readthedocs.io/en/latest/faq.html).

## Easy install using Docker

#### Via a pre-built image

1. Install [Docker](https://docs.docker.com/engine/installation/)
2. Run `docker pull honeynet/conpot`
3. Run `docker run -it -p 80:80 -p 102:102 -p 502:502 -p 161:161/udp --network=bridge honeynet/conpot:latest /bin/sh`
4. Finally run `conpot -f --template default`

Navigate to ``http://MY_IP_ADDRESS`` to confirm the setup.

#### Build docker image from source

1. Install [Docker](https://docs.docker.com/engine/installation/)
2. Clone this repo with `git clone https://github.com/mushorg/conpot.git` and `cd conpot`
3. Run `docker build -t conpot .`
4. Run `docker run -it -p 80:80 -p 102:102 -p 502:502 -p 161:161/udp --network=bridge conpot`

Navigate to `http://MY_IP_ADDRESS` to confirm the setup. 

#### Build from source and run with docker-compose

1. Install [docker-compose](https://docs.docker.com/compose/install/) 
2. Clone this repo with `git clone https://github.com/mushorg/conpot.git` and `cd conpot`
3. Build the image with `docker-compose build`
4. Test if everything is running correctly with `docker-compose up`
5. Permanently run as a daemon with `docker-compose up -d`


