Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akagisho/multi-honeypot-ansible
Set up various honeypot servers.
https://github.com/akagisho/multi-honeypot-ansible
Last synced: 2 months ago
JSON representation
Set up various honeypot servers.
- Host: GitHub
- URL: https://github.com/akagisho/multi-honeypot-ansible
- Owner: akagisho
- Created: 2017-10-15T03:14:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T00:02:28.000Z (over 4 years ago)
- Last Synced: 2024-08-03T23:05:36.026Z (6 months ago)
- Language: C
- Homepage:
- Size: 132 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-honeypot - **0**星
README
# multi-honeypot-ansible
Set up various honeypot servers
## Supported softwares
* [iplog](http://freecode.com/projects/iplog) - TCP/IP traffic logger.
* [Cowrie](https://github.com/micheloosterhof/cowrie) - SSH and Telnet honeypot (port 22, 23).
* [Mailoney](https://github.com/awhitehatter/mailoney) - SMTP-AUTH honeypot (port 587).
* Postfix - SMTP open relay mail server (port 25).
* [Wordpot](https://github.com/gbrindisi/wordpot) - Wordpress honeypot (port 80 via Nginx).
* [UDPot](https://github.com/jekil/UDPot) - DNS honeypot (port 53).## Requirements
* CentOS 7.x
* sshd is running without port 22
* Ansible 2.2+For local development environment:
* VirtualBox
* Vagrant 1.5+## Usage
### production
First of all, install CentOS 7.x to the server.
Change ssh port in `/etc/ssh/sshd_config`.
Port 10022
Create Ansible inventory file.
$ ${EDITOR} production/inventory
[default]
honeypot.example.com ansible_user=root ansible_port=10022Run ansible playbook.
$ ansible-playbook -i production/inventory site.yml
### local vagrant
Run ansible playbook.
$ vagrant up
$ vagrant provision## View results
- iplog: `/var/log/iplog/iplog`
- cowrie log: `/var/log/cowrie/`
- UDPot log: `/var/log/udpot/db.sqlite3`
- Maildir: `/home/honeypot/Maildir/new/`
- webmail: http://honeypot.example.com:10081/
- password: `/home/honeypot/.password`