Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SSH, Avoiding Default Port #63

Closed
MoeT-collab opened this issue Jan 4, 2021 · 5 comments
Closed

SSH, Avoiding Default Port #63

MoeT-collab opened this issue Jan 4, 2021 · 5 comments

Comments

@MoeT-collab
Copy link

On the SSH server config, it is always a good practice to change the TCP port value from 22 to a random one (example 6222).
This will help avoid bad actors randomly scanning for open default ports.

Then the new SSH port should be allowed in through UFW.

@imthenachoman
Copy link
Owner

If they scan for open ports they will still find it open. I don't know how much value there is in hiding the port. Something like a port knocker might help.

@iyesin
Copy link

iyesin commented Jan 13, 2021

@imthenachoman,
As person, operating 100s of servers in production, I would say, that switching default ssh port from 22 to something high-port (1024+) have huge impact. The frequency of password-bruteforcing-attempts (all unsuccessful due to disabled password auth) drops from tens-per-second to singles per minute.
Port-knocking or web-knocking reducing this numbers to zero, of course.

@initiateit
Copy link

@iyesin If you specify a port below 1024 you prevent unprivileged processes from binding to it and impersonating it.

@sbrl
Copy link

sbrl commented Apr 25, 2021

@iyesin: Indeed - but it's worth noting that things like moving the ssh port is perhaps best presented as a way to reduce computational load and annoying messages /var/log/auth.log, rather than a real security measure.

@hellresistor
Copy link
Contributor

hellresistor commented May 1, 2021

I can sure, with own exp, using ssh default port (22), on some VPS's you will automatic get bots bruteforcing the 22 port .... Same way if you want use default port. disable passwords authentication and set a ssh keyfile ;)

https://gist.github.com/hellresistor/108d965b32a907558ed101e9a0f4326c

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants