• corship@feddit.de
    link
    fedilink
    arrow-up
    14
    arrow-down
    1
    ·
    11 months ago

    Obfuscation is not security, changing the port doesn’t increase your security

    • boatswain@infosec.pub
      link
      fedilink
      arrow-up
      23
      arrow-down
      4
      ·
      11 months ago

      I see this claim all the time, and it bugs me every time. Obfuscation is a perfectly reasonable part of a defense in depth solution. That’s why you configure your error messages on production systems to give very generic error messages instead of the dev-centric messages with stack traces on lower environments, for example.

      The problem comes when obscurity is your only defense. It’s not a full remediation on its own, but it has a part in defense in depth.

      • dan@upvote.au
        link
        fedilink
        arrow-up
        7
        ·
        11 months ago

        Changing the port isn’t really much obfuscation though. It doesn’t take long to scan all ports for the entire IPv4 range (see masscan)

        • lud@lemm.ee
          link
          fedilink
          arrow-up
          8
          arrow-down
          2
          ·
          11 months ago

          It helps against stupid automated attacks though.

          If someone has changed the port it’s likely that they have set up a great password or disabled password auth all together.

          It’s worth it for just having cleaner logs and fewer attempts.

          • dan@upvote.au
            link
            fedilink
            arrow-up
            3
            ·
            11 months ago

            It’s worth it for just having cleaner logs

            Those logs are useful to know which IPs to permanently block :)

    • tetris11
      link
      fedilink
      arrow-up
      17
      arrow-down
      3
      ·
      11 months ago

      I hear you, but I disagree:

      It buys you enough time to check the journals and see that a group of IPs have attempted various ports giving you enough time to block the IP altogether.

      It also buys you disinterest from the malicious host, since probably there’s a hard limit on how many ports they will test, and they will flag your machine as “too much work” and try another.

      Again, I agree with you that obfuscation is not security, but it sure does help.

      • corship@feddit.de
        link
        fedilink
        arrow-up
        6
        ·
        11 months ago

        From what I understand you obfuscate the port in order to limit the amount of incoming attacks. But then fail2ban would be a much more effective tool.

        The disinterested aspect you described is the actual problem. Because it’s based on the assumption your port won’t be found, but it definitely will, and as soon as that happens you’ll end up in a database such as shodan and the entire effect is GONE.

        • tetris11
          link
          fedilink
          arrow-up
          1
          ·
          11 months ago

          Kind of - I obfuscate the port because it won’t show up on the list of well known TCP and UDP ports[0], but be in ephemeral region. To attack this port they would have to guess the number or do a full wide port scan of the system which will waste a large amount of their time. Though granted, they need probably less than a week.

          I’ve honestly never understood the defaults of fail2ban, which seemed to do nothing on every system I’ve tried it on. I get much better results by parsing the journalctl logs, and grouping the ips and then passing them directly into iptables or UFW.

          shodan

          You’re probably right. What is shodan?

          0: https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers

    • ipkpjersi
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      11 months ago

      I kind of agree, but I also kind of disagree because if you are using the default port and default password, you’d be much more likely to be hacked with the default port rather than a non-standard port. Of course, you’d be even more secure with a non-default password (or key auth only). Plus, information leaking can definitely be used against you, so obscurity can actually help make things secure. You want to make yourself a less simple target than your neighbour in any way that you can.

      It also cuts down on log spam which is nice.