Ask HN: Anonymous person sent proof of SSH access to our production server
221–230 of 246 posts
Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#222Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#223Earlier quoted context omitted.
Ask for a BTC address and send a tip.
If you're sending an even slightly significant amount of money, there are potential tax implications too. You might need to do a 1099.
Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#224Earlier quoted context omitted.
I'd be very cautious before moving SSH to a non-privileged port (over 1024). Any user on the server might start their own SSH server on the port assuming the real SSH server is dead. While this is hard to exploit (needs access to normal user, needs to kill real SSH server, need to get around SSH server key checking), it still is at least a theoretical reduction in security.
A user can always start their own SSH server. Just because you've decided to move it to a different port doesn't really encourage them. I suppose you could make this a bit more difficult for them by removing compilers (no really, you don't need compilers everywhere) and making sshd owned by root, mode 700... However, proper ingress filtering or local iptables/pf rules would stop any unwanted inbound traffic from reac…
Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#225Earlier quoted context omitted.
Hire someone because they exploited a single vulnerability?
Maybe offering a reward is a good way to reduce the anonymity of the person, since rewards can be tracked. Speaking only for myself.. If I were to go the trouble to anonymously tip somebody off about a security vulnerability, it would be because I cared that they were secure and that I did not wish to be identified. I would neither expect nor accept a reward.
I think just the fact that they didn't do this points to malevolence. I would expect the ransom demands to follow shortly.
Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#2261) talk to them and reward them
2) don't talk to them or reward them
3) you're an idiot
4) hire somebody expensive
5) don't hire somebody, they're a rip off
Thanks, HN, that clears everything up.
Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#227Ask your employees which one is trolling you? Maybe you will get a giggle and find out it was a prank.
Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#228Earlier quoted context omitted.
100% agree. Disclaimer I own a data center and have dealt with customer collocated equipment breaches. In addition to the above steps: -> disable root being able to login inside your sshd_config file. Make sure PermitRootLogin no -> rename the root account too so if they are using an exploit based on user authentication then perhaps they won't be able to elevate to root. -> disable password based logins and go to cer…
just a note: intelligent exploiters hide their files inside of yours, so the -mtime is useless in many cases, they will set the mtime of their upload to match the rest of the folder they hide in. command history is also easy to alter if you know what you are doing.
Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#229Re: Ask HN: Anonymous person sent proof of SSH access to our production server
#230Earlier quoted context omitted.
I'd be very cautious before moving SSH to a non-privileged port (over 1024). Any user on the server might start their own SSH server on the port assuming the real SSH server is dead. While this is hard to exploit (needs access to normal user, needs to kill real SSH server, need to get around SSH server key checking), it still is at least a theoretical reduction in security.
A user can always start their own SSH server. Just because you've decided to move it to a different port doesn't really encourage them. I suppose you could make this a bit more difficult for them by removing compilers (no really, you don't need compilers everywhere) and making sshd owned by root, mode 700... However, proper ingress filtering or local iptables/pf rules would stop any unwanted inbound traffic from reac…