Earlier quoted context omitted.
Do you allow them entry, present a fake prompt, and record what they do? Some time ago I did a little experiment by running `nc -l -p 23` (telnet) which connects the next incoming telnet connection to your console. Type in a simulated prompt like Password: or # and it'll be buffered until the connection comes in. Then see what the scanner sends.
Danger. I believe this opens a RCE hole if the attacker sends a properly crafted sequence of terminal escape codes.
Show HN: Watch bots interact with an SSH honeypot in real time
71–75 of 75 posts
Re: Show HN: Watch bots interact with an SSH honeypot in real time
#72Re: Show HN: Watch bots interact with an SSH honeypot in real time
#73Earlier quoted context omitted.
In my own experiments in this area I've been gobsmacked by how much malicious traffic comes from Azure. I'm currently fighting this battle. As of this morning: 80% of malicious traffic comes from Azure. 10% from Digital Ocean. 5% from AWS. 5% from GCP.
Closer to 95% if you count Teams.
Re: Show HN: Watch bots interact with an SSH honeypot in real time
#74Hi HN, I maintain several web servers and kept seeing a constant stream of SSH login attempts. At some point I became curious: what do these bots actually try to do after they get in? I set up a Cowrie SSH honeypot and built a small live dashboard around its JSON logs. Cowrie listens on port 22, a Python service follows the log and streams events over WebSockets, and Nginx serves the frontend. The whole thing current…
Hi, this is very interesting, thanks. While trying to educate myself about honeypots I came across this ( https://securehoney.net/ ). The aggregations of popular logins and IP locations seem interesting.