Imagine your SSH server only listens on an IPv6 address, and where the last 6 digits are changing every 30 seconds as a TOTP code...
Inspired from this tweet (Wayback machine)
Looking for a way simpler, bash implementation? Check out old branch.
This was made because... I could make it, not if I should make it. Yes, you read it right - it's a toy. Only use it if you know what you are doing. I am not up to handholding, preventing any footguns nor basic support requests.
Its purpose is just to add a layer of obscurity, it's probably only effective against bots (allthough most of them disappear after moving on to IPv6) and script kiddies. If you're being targeted by e.g government agencies or people who definitely know what they do, then this probably won't help you.
Using this on top of unconfigured (in other words, running stock configuration) SSH server is always a bad idea, so please configure your SSH server
to e.g do only public key authentication, disable login for unnecessary users (e.g allow only members of group canssh
to login) etc.
To make things more fun, you may want to adjust your firewall rules to forward to SSH tarpit by default.
Besides that, you NEED to ensure that your server and client times are in sync. You might want to look into chrony.
A few great alternatives to this:
- WireGuard - easy to set up VPN software.
- knockd - good old port knocking solution.
- sshguard - bans brute forcers.
- fail2ban - also bans brute forcers.
Assign yourself an IPv6 subnet, replace last 6 hex characters with x
.
fd15:4ba5:5a2b:1008:20c:29ff:fe1a:9587
-> fd15:4ba5:5a2b:1008:20c:29ff:fexx:xxxx
Create a base32 TOTP secret, using e.g gen-oath-safe mikroskeem totp
$ export TOSH_IP_TEMPLATE=fd15:4ba5:5a2b:1008:20c:29ff:fexx:xxxx
$ export TOSH_TOTP_SECRET=3OBVZP4AI74OIJO5YGV3UEXKXS6ISJ6H
$ tosh generate
fd15:4ba5:5a2b:1008:20c:29ff:fe59:3001
- systemd timer & iptables setup - see examples/iptables/
- Describe example setup with
iptables
& systemd -
ssh
wrapper (ProxyCommand
feature?)
I am looking forward to building a cross-platform program easily, which works even on Windows.
Not done yet. Reference implementation will work inside ssh ProxyCommand option.