• slazer2au@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    8
    ·
    2 months ago

    Move services away from known ports and don’t use ports that end with well known port numbers (22,80,443).

    Moving ssh from 22 to 2222 or 443 to 10443 does nothing. You have ~65000 ports. Pick something random like 6744 or 2458

    • towerful@programming.dev
      link
      fedilink
      English
      arrow-up
      18
      arrow-down
      2
      ·
      2 months ago

      Changing ports does nothing except reduced log chatter.
      Security through obscurity is not security

      • slazer2au@lemmy.world
        link
        fedilink
        English
        arrow-up
        11
        arrow-down
        1
        ·
        2 months ago

        Moving ports does help. It is not a sure thing but when used in conjunction with other security mechanism can help get rid the of the low hanging fruit of scriptkiddies and automated scans.

        • towerful@programming.dev
          link
          fedilink
          English
          arrow-up
          10
          arrow-down
          1
          ·
          2 months ago

          But scriptkiddies and automated scans are not a security threat. If they were a legitimate threat to your server, you have bigger problems.
          All it does is reduce log chatter.

          Anyone actually wanting in would port scan, then try and connect to each port, and quickly identify an SSH port

          • solrize@lemmy.world
            link
            fedilink
            English
            arrow-up
            5
            arrow-down
            1
            ·
            2 months ago

            Imagine that the xz exploit actually made it into your server, so your sshd was vulnerable. Having it on another port does seem helpful then. In fact i sometimes think of putting mine on a random secret address in the middle of a /64 ipv6 range, but I haven’t done that yet.

            it occurs to me, the xz exploit and similar is a good reason not to run the latest software. It affected Debian Sid but not the stable releases. I’m glad I only run the stable ones.

            • towerful@programming.dev
              link
              fedilink
              English
              arrow-up
              3
              ·
              2 months ago

              Just have 2 ipv4 assigned to your server. Have 1 for all your services, and run ssh on the other allowing root login with the password “admin”.
              A random ipv6 in the same subnet as your server is just obscurity.

              The XZ exploit would be functionally similar to allowing root login using the password “admin”.
              Would doing that on a different port be secure? No? Then a different port is not security, it’s obscurity.

              Obscurity is just going to trip you up at some point and reduce log chatter.

              And yes, running LTSB/stable is a sensible choice for servers.

            • ShortN0te@lemmy.ml
              link
              fedilink
              English
              arrow-up
              3
              arrow-down
              1
              ·
              2 months ago

              Imagine that the xz exploit actually made it into your server, so your sshd was vulnerable. Having it on another port does seem helpful then.

              Nope. Your entire server can be scanned in less than a second for an open ssh port.

              IPv6 does not change the fact since when your server is attacked the hist IP is already known.

              • solrize@lemmy.world
                link
                fedilink
                English
                arrow-up
                2
                ·
                2 months ago

                Maybe I’m missing something but how is the host ip known? The server has a maybe-known range of addresses, but I don’t announce which address has an sshd listening. There are 2**64 addresses in the range, so scanning in 1 second doesn’t sound feasible.

              • Possibly linux@lemmy.zip
                link
                fedilink
                English
                arrow-up
                1
                ·
                edit-2
                2 months ago

                I’ve never seen an attack that scans all ports. Normally it just checks open ports and then tries common credentials and exploits. If that fails it moves on to the next IP.

                Changing the default port on SSH probably isn’t going to do much as SSH is already pretty secure. However it is a good rule of thumb to change the defaults.

            • Possibly linux@lemmy.zip
              link
              fedilink
              English
              arrow-up
              1
              ·
              2 months ago

              The XZ backdoor was not exploited so it is hard to say what would of been effective.

              The important thing to note is changing the defaults on systems. Defaults are bad because it makes it easy to take over a large number of systems easily. Even right now there are bots testing common ports for weaknesses.

          • Possibly linux@lemmy.zip
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            1
            ·
            2 months ago

            Automated attacks are a huge threat. Changing defaults shouldn’t be your only security practice but it can significantly help defend a network.

            • towerful@programming.dev
              link
              fedilink
              English
              arrow-up
              3
              arrow-down
              1
              ·
              2 months ago

              It defends against the lowest level of automation. And if that is a legit threat in your model, you are going to have a bad time.
              It’s just going to trip you up at some point

              • Possibly linux@lemmy.zip
                link
                fedilink
                English
                arrow-up
                2
                arrow-down
                1
                ·
                2 months ago

                I’m not saying it should be your only defense. I’m saying that changing defaults is a good idea for secure systems.

                For instance, you should change the default WiFi password on your router.

      • Possibly linux@lemmy.zip
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        1
        ·
        2 months ago

        It breaks automation. Same thing for changing any default. Change default names, directories and anything else that’s to predictable

    • Still does nothing when scanning the entire ipv4 address space achievable so quickly. You can also use services like shodan to find vulnerable services on any ports.

      Use SSH keys, stay upgraded. Make management services (SSH, RDP, admin services) accessible only via VPN (WireGuard). Only expose 80 and 443 to the internet, if necessary.