Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lanjelot/twisted-honeypots
SSH, FTP and Telnet honeypots based on Twisted
https://github.com/lanjelot/twisted-honeypots
ftp honeypot python ssh twisted
Last synced: 7 days ago
JSON representation
SSH, FTP and Telnet honeypots based on Twisted
- Host: GitHub
- URL: https://github.com/lanjelot/twisted-honeypots
- Owner: lanjelot
- License: gpl-2.0
- Created: 2015-01-18T08:32:57.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-12-27T11:21:21.000Z (almost 5 years ago)
- Last Synced: 2024-08-03T23:05:51.438Z (3 months ago)
- Topics: ftp, honeypot, python, ssh, twisted
- Language: Shell
- Size: 38.1 KB
- Stars: 84
- Watchers: 8
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-honeypot - **55**星
- awesome-hacking-lists - lanjelot/twisted-honeypots - SSH, FTP and Telnet honeypots based on Twisted (Shell)
README
# twisted-honeypots
SSH, FTP and Telnet honeypot services based on the [Twisted](http://twistedmatrix.com/) engine for Python 3.
All credentials are stored on a local MySQL database.This will create easily (and painlessly) very good dictionaries to use for pentesting.
## Install ##
```bash
$ git clone https://github.com/lanjelot/twisted-honeypots /opt/twisted-honeypots
$ cd /opt/twisted-honeypots
$ sudo ./install.sh && ./setup-db.sh
```## Usage ##
To start/stop the services:
```bash
$ sudo ./start.sh
$ sudo ./stop.sh
```To monitor the current execution:
```bash
$ ./monitor.sh
```![preview](https://i.imgur.com/5p4GR5z.png)
To extract the login/passwords in a wordlist sorted by best popularity:
```bash
$ source vars.sh
# logins
$ echo "select distinct login from pot group by login order by count(login) desc" | mysql -rs -u${MYSQL_USER} -p${MYSQL_PWD} ${MYSQL_DB}
# passwords
$ echo "select distinct password from pot group by password order by count(password) desc" | mysql -rs -u${MYSQL_USER} -p${MYSQL_PWD} ${MYSQL_DB}
```