I’ve read an article which describes how to simulate the close ports as open in Linux by eBPF. That is, an outside port scanner, malicious actor, will get tricked to observe that some ports, or all of them, are open, whereas in reality they’ll be closed.

How could this be useful for the owner of a server? Wouldn’t it be better to pretend otherwise: open port -> closed?

    • nous@programming.dev
      link
      fedilink
      English
      arrow-up
      6
      ·
      20 days ago

      Would it even need to pretend it is open? If it can fake a port being open then it can tell when a close port is being pinged. So can outright block connections from those IPs without ever pretending it is open?

      • originalucifer@moist.catsweat.com
        link
        fedilink
        arrow-up
        2
        ·
        20 days ago

        sure, if you want to be that black and white about it… but with this you maybe could glean more information about the attempt and have more granular logic.

        • nous@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          edit-2
          20 days ago

          What extra information could you gather? Note I assume we are talking about a fake open port here, not an active service listening on a port that can communicate with the attacker. That could be done without eBPF though - so what advantage would eBPF have here?

          And I assume this is more on the level of responding to pings than creating full connections? At which point you are only dealing with a single packet from the sender. So what value does responding give you here?

          • dnick@sh.itjust.works
            link
            fedilink
            arrow-up
            1
            ·
            18 days ago

            At a guess, you might tell the difference between some benign scan and an attempt to actually take advantage of the port, perhaps to use as a trigger to automatically ban an ip address? or a way to divert malicious resources to an easy looking target so they are less available in other areas?

            The difference between someone scanning for open ports and someone attacking a port they find open seems significant enough to at least track and watch for patterns… Whether that’s useful for the majority of users or not is rarely why a feature is implemented.

            • nous@programming.dev
              link
              fedilink
              English
              arrow-up
              1
              ·
              18 days ago

              What is a benign scan? Why do you need to scan a system if you are not trying to figure out what it is running - which is something only attackers or the server admins (looking for things that should not be exposed) would want to do. Any third party scanning for open ports I would consider an attack. Though it might just be an automated system looking for weaknesses - it is still an attack.

              • dnick@sh.itjust.works
                link
                fedilink
                arrow-up
                1
                ·
                12 days ago

                A benign scan could just be looking for an ftp server to connect to or a repeater or relay server of some sort. There are plenty of open services people make available for free and the fact that you would consider it an attack it doesn’t make it one.

                At minimum you could be alerted to look for someone attempting to connect to your ftp server with a single basic anonymous authentication vs someone flooding that port with known malicious software attacks, and block the latter across your entire network and effectively ignore the former. Really it seems like you’re advertising your lack of imagination in this context than a legitimate lack of possible uses for spoofing open ports.

                • nous@programming.dev
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  ·
                  12 days ago

                  Those are not port scans though. A port scan is when someone is systematically checking a large number of ports on a system to find which ones are open and possibly what is running on them. A random connection to a single port is not a port scan and not something pretending that other ports are open will help at all with. And open services are typically announced in some other way and don’t require scanning all ports on the whole internet to find. Though you may get connections from people that get the address wrong, or have an old IP that has been reused or something - those are not scans though.

                  Really it seems like you’re advertising your lack of imagination in this context than a legitimate lack of possible uses for spoofing open ports.

                  I never said that. I have mentioned actual use cases for wanted this in other comments in this thread - namely slowing down attackers by making them do more work by not being able to do quick checks for open ports. My responses here though are about the postulation that you could gain extra information with an open port in eBPF vs just a closed one or simply a service running on that port. Thus I do not think that is the reason you would want this. Never said there are no reasons at all that you would want to pretend ports are open.

  • chameleon@fedia.io
    link
    fedilink
    arrow-up
    2
    ·
    19 days ago

    You can’t pretend an open port is closed, because an open port is really just a service that’s listening. You can’t pretend-close it and still have that service work. The only thing you can do is firewalling off the entire service, but presumably, any competent distro will firewall off all services by default and any service listening publicly is doing so for a good reason.

    I guess it comes down to whether they feel like it’s worth obfuscating port scan data. If you deploy that across all of your network then you make things just a little bit more annoying for attackers. It’s a tiny bit of obfuscation that doesn’t really matter, but I guess plenty of security teams need every win they can get, as management is always demanding that you do more even after you’ve done everything that’s actually useful.

    • sapporoOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      19 days ago

      You can’t pretend-close it and still have that service work.

      indeed, a service on a port would no longer properly work. However, pretending that an open port is closed is possible the same way when pretending that’s open

      • dnick@sh.itjust.works
        link
        fedilink
        arrow-up
        1
        ·
        18 days ago

        Maybe what you’re referring to is along the lines of a port being open but the software on the other side of it not sending acknowledging responses?

    • mvirts@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      19 days ago

      Or slow down a complete scan, it would take a long time to scan all likely ports on a machine stealthily, and be quite obvious if that machine is set up as a honeypot.

  • urquell@lemm.ee
    link
    fedilink
    arrow-up
    2
    arrow-down
    2
    ·
    20 days ago

    Maybe a port that is actually open doesn’t look as interesting

      • nous@programming.dev
        link
        fedilink
        English
        arrow-up
        4
        ·
        20 days ago

        From an attacker perspective you would do a quick scan to find open ports, then focus on those ports with more expensive/slower scans to find out what is running on those ports. If everything reports open then what ports do you focus on first? So not so much that actually open ports are less interesting, but that actually open ports are harder to find among all the ports.

        • sapporoOP
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          3
          ·
          edit-2
          19 days ago

          Do you youself understand what you’re talking about?

          then focus on those ports with more expensive/slower scans to find out what is running on those ports.

          What do you mean by “focus on those ports”? What are “more expensive/slower scans”?

          If everything reports open

          not every port gets reported to be open but only some of them

          what ports do you focus on first?

          me? or an attacker? he could work with any ports he wishes

          • nous@programming.dev
            link
            fedilink
            English
            arrow-up
            2
            ·
            edit-2
            19 days ago

            Do you youself understand what you’re talking about?

            I am by no means an expert in this area. But I have some understanding of how things work.

            What do you mean by “focus on those ports”? What are “more expensive/slower scans”?

            There are many different levels of scans you can do on ports - the first and simplest is just trying to connect to see if the port is open. But that only tells you if the port is open. You then need to try and figure out what service is running on the port which is done by trying to communicating with it and seeing what it replys with. E.g. sending a http request to see if a http server is listing, or trying to start a tls connection for https). Once you know what service is running you can make additional queries to try and figureout what version it is running which can tell you what vulnerabilities it is exposed to. Each of these might need a different connection, and you might need to cycle through many different queries to get a response from the server - all of that is far more expensive than just checking to see if the port is open.

            So you generally want to preform a quick scan of open ports, then follow up on a deeper scan of those ports to gather more information about what is running on the port. Nmap, the tool generally used for this, has these different modes you can tell it to scan in and is able to do simple TCP connection scans, or more detail scans for detecting the service an OS (and their versions) as well.

            not every port gets reported to be open but only some of them

            That was a hypothetical, not having read whatever article you are talking about. But I would assume that a eBPF tool that fakes open ports would do so to pretend a large number of ports are open at least. Though that is just speculation on my part.

            me? or an attacker? he could work with any ports he wishes

            That is from an attackers perspective.

            • sapporoOP
              link
              fedilink
              English
              arrow-up
              1
              ·
              edit-2
              18 days ago

              Ok, back to this then:

              If everything reports open then what ports do you focus on first?

              I don’t see an issue here. An attacker would be overwhemed with choise and excitement so that he wouldn’t be able to decide which port to choose first, get stuck for a several months unable to decide? He’d toss a coin then.

              • nous@programming.dev
                link
                fedilink
                English
                arrow-up
                1
                ·
                18 days ago

                Its costs him time - which is the point. They would have to do more detailed checks on every port which costs them time. Attackers are typically scanning loads of ports over large ranges of IPs, any small slow down on each can drastically slow down their overall progress making the attack less feasible and more expensive to undertake.

                • sapporoOP
                  link
                  fedilink
                  English
                  arrow-up
                  1
                  ·
                  18 days ago

                  but an attacker isn’t obliged to take on all the open ports, he could work with some of them - the ones that may seem the most interesting to him