Earlier quoted context omitted.
Kinda unforgivable to be on front page of HN in 2021 without https
Why exactly? Other than a lot of "potential problems" security theater? People still send postcards, where they don't care if people read what's written on it..
Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
11–20 of 119 posts
Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#12Are there are any security precautions in using ssh (or telnet, netcat or curl for that matter) to connect to an unknown service like this?
Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#13Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#14Earlier quoted context omitted.
Kinda unforgivable to be on front page of HN in 2021 without https
Why exactly? Other than a lot of "potential problems" security theater? People still send postcards, where they don't care if people read what's written on it..
Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#15Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#16Try it: `ssh sshtron.zachlatta.com`
Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#17Earlier quoted context omitted.
Why exactly? Other than a lot of "potential problems" security theater? People still send postcards, where they don't care if people read what's written on it..
Practically speaking, it is because some modern browsers (and extensions) will throw up an error (either by-passable or not) if it's HTTP only. Yeah it's not necessary in many cases, but it's growing to be the standard expected behavior.
Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#18Earlier quoted context omitted.
Why exactly? Other than a lot of "potential problems" security theater? People still send postcards, where they don't care if people read what's written on it..
Practically speaking, it is because some modern browsers (and extensions) will throw up an error (either by-passable or not) if it's HTTP only. Yeah it's not necessary in many cases, but it's growing to be the standard expected behavior.
Re: Show HN: Apply for a job through SSH, $ ssh jobs.hackclub.com
#19Are there are any security precautions in using ssh (or telnet, netcat or curl for that matter) to connect to an unknown service like this?
A privacy precaution would be to `ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no jobs.hackclub.com`. By default ssh will send all its public keys to a server unless given an identify file to use as an arg or in ~/.ssh/config.