Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cryptix720/hudinx
Hudinx is a tiny interaction SSH honeypot engineered in Python to log brute force attacks and, most importantly, the entire shell interaction performed by the attacker.
https://github.com/cryptix720/hudinx
attacker engineering honeypot python website windows
Last synced: about 20 hours ago
JSON representation
Hudinx is a tiny interaction SSH honeypot engineered in Python to log brute force attacks and, most importantly, the entire shell interaction performed by the attacker.
- Host: GitHub
- URL: https://github.com/cryptix720/hudinx
- Owner: Cryptix720
- License: gpl-3.0
- Created: 2018-05-31T19:48:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T05:00:46.000Z (over 5 years ago)
- Last Synced: 2024-08-03T23:06:19.710Z (3 months ago)
- Topics: attacker, engineering, honeypot, python, website, windows
- Language: Tcl
- Size: 10.4 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Audit: audit/README.md
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-honeypot - **1**星
README
# hudinx
![alt text](https://github.com/Cryptix720/HUDINX/blob/master/honeyX.png)
Hudinx is a medium interaction SSH honeypot designed to log brute force attacks and, most importantly, the entire shell interaction performed by the attacker.## Features
Some interesting features:
* Fake filesystem with the ability to add/remove files. A full fake filesystem resembling a Debian 5.0 installation is included
* Possibility of adding fake file contents so the attacker can 'cat' files such as /etc/passwd. Only minimal file contents are included
* Session logs stored in an format for easy replay with original timings
* Just like Hudinx, hudinx saves files downloaded with wget for later inspection
* Trickery; ssh pretends to connect somewhere, exit doesn't really exit, etc## Requirements
Software required:
* Operating systems: (tested on Debian, CentOS, FreeBSD and Windows 7, 8, 10)
* Python 2.7+
* Twisted
* PyCrypto
* StrawberryPerl
* Zope InterfaceCreate Wiki for some installation instructions!
## How to install it?
`./install.sh`
## Configure advanced security with rules ?
* Configure Windows and Linux security
## How to launch & kill it?
Edit hudinx.cfg to your liking and start the honeypot by running:
`./LAUNCH.sh` `./KILL.sh`
LAUNCH.sh is a simple shell script that runs hudinx in the background using twistd. Detailed startup options can be given by running hudnix manually. For example, to run hudinx in foreground:
`hudinx -y hudinx.tac -n`
By default Hudinx listens for ssh connections on port 3131. You can change this, but do not change it to 22 as it requires root privileges. Use port forwarding instead. (More info: [MakinghudinxReachable](https://github.com/desaster/hudinx/wiki/Making-hudinx-Reachable)).
Files of interest:
* dl/ - files downloaded with wget are stored here
* log/hudinx.log - log/debug output
* log/tty/ - session logs
* log/telnet/ - telnet logs
* utils/playlog.py - utility to replay session logs
* utils/createfs.py - used to create fs.pickle
* fs.pickle - fake filesystem
* honeyfs/ - file contents for the fake filesystem - feel free to copy a real system here## Is it secure?
Maybe. See [FAQ](https://github.com/Cryptix720/hudinx/wiki/FAQ)