All Projects → lanjelot → twisted-honeypots

lanjelot / twisted-honeypots

Licence: GPL-2.0 license
SSH, FTP and Telnet honeypots based on Twisted

Programming Languages

shell
77523 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to twisted-honeypots

Honeypy
A low to medium interaction honeypot.
Stars: ✭ 410 (+418.99%)
Mutual labels:  honeypot, twisted
public
BitDust project source codes : official Public Git repository (mirror on GitHub) : https://bitdust.io
Stars: ✭ 19 (-75.95%)
Mutual labels:  twisted
txi2p
I2P bindings for Twisted.
Stars: ✭ 12 (-84.81%)
Mutual labels:  twisted
fireftp
free, secure, cross-platform FTP/SFTP client for Firefox
Stars: ✭ 137 (+73.42%)
Mutual labels:  ftp
simple-ftp-deploy
This package for Sublime Text 3 give you possibility to auto upload file to FTP server when you save local file.
Stars: ✭ 16 (-79.75%)
Mutual labels:  ftp
ZKShS
Search shodan without any knowledge about its queries
Stars: ✭ 37 (-53.16%)
Mutual labels:  honeypot
RB-libcURL
A Realbasic and Xojo binding to libcurl
Stars: ✭ 19 (-75.95%)
Mutual labels:  ftp
citrix-honeypot
Citrix ADC (NetScaler) Honeypot. Supports detection for CVE-2019-19781 and login attempts
Stars: ✭ 24 (-69.62%)
Mutual labels:  honeypot
weblogic honeypot
WebLogic Honeypot is a low interaction honeypot to detect CVE-2017-10271 in the Oracle WebLogic Server component of Oracle Fusion Middleware. This is a Remote Code Execution vulnerability.
Stars: ✭ 30 (-62.03%)
Mutual labels:  honeypot
RandomFtpGrabber
Random FTP grabber - downloads all the interesting stuff
Stars: ✭ 55 (-30.38%)
Mutual labels:  ftp
mpv-scripts
A collection of scripts for mpv player
Stars: ✭ 138 (+74.68%)
Mutual labels:  ftp
imap-honey
IMAP or SMTP honeypot written in Golang
Stars: ✭ 22 (-72.15%)
Mutual labels:  honeypot
pade
Python Agent DEvelopment framework
Stars: ✭ 81 (+2.53%)
Mutual labels:  twisted
EOSFTPServer
A project to create a complete, standard compliant, multi-user, Objective-C (Mac OS X / iOS) FTP server.
Stars: ✭ 35 (-55.7%)
Mutual labels:  ftp
fakessh
A dockerized fake SSH server honeypot written in Go that logs login attempts.
Stars: ✭ 42 (-46.84%)
Mutual labels:  honeypot
kafka-connect-fs
Kafka Connect FileSystem Connector
Stars: ✭ 107 (+35.44%)
Mutual labels:  ftp
Loki
一个轻量级Web蜜罐 - A Little Web Honeypot.🍯🍯🍯🐝🐝🐝
Stars: ✭ 151 (+91.14%)
Mutual labels:  honeypot
prickly-pete
A script using Docker to quickly bring up some honeypots exposing lots of services. For research, reconnaissance, and fun. (DISCLAIMER may not be fun, not to be taken internally, aim away from face)
Stars: ✭ 29 (-63.29%)
Mutual labels:  honeypot
laravel-responsivefilemanager
Laravel Responsive File Manager integration
Stars: ✭ 13 (-83.54%)
Mutual labels:  ftp
DemonHunter
Distributed Honeypot
Stars: ✭ 54 (-31.65%)
Mutual labels:  honeypot

twisted-honeypots

SSH, FTP and Telnet honeypot services based on the Twisted 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

$ 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:

$ sudo ./start.sh
$ sudo ./stop.sh

To monitor the current execution:

$ ./monitor.sh

preview

To extract the login/passwords in a wordlist sorted by best popularity:

$ 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}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].