• SoftestSapphic@lemmy.world
    link
    fedilink
    English
    arrow-up
    72
    arrow-down
    17
    ·
    edit-2
    7 months ago

    This doesn’t even make sense.

    If you are on their domain they can see the things you click on, this is how websites and cookies work.

    This isn’t nefarious, it’s the raving delusions of a tech illiterate idiot.

    • JonsJava@lemmy.world
      link
      fedilink
      English
      arrow-up
      24
      arrow-down
      2
      ·
      7 months ago

      No.

      You can see a link was loaded in the page. Link tracking is still needed to know if the link was clicked.

      It can be an “on click” JavaScript event, or a redirect to a tracking site.

      • SoftestSapphic@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        21
        ·
        edit-2
        7 months ago

        No, if you click a link that brings you to or from a site your IP is logged

        Navigating the internet requires having and disclosing your IP address.

        Sorry

        • JonsJava@lemmy.world
          link
          fedilink
          English
          arrow-up
          26
          arrow-down
          1
          ·
          7 months ago

          The destination logs the IP. The source doesn’t see the click, because it happens in your client, not in their site.

          Source: managed tens of thousands of sites and hundreds of thousands of servers for over 25 years.

          • SoftestSapphic@lemmy.world
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            19
            ·
            7 months ago

            Wow so you need an IP to navigate the web and every site you visit sees that IP?

            Thanks for explaining what I just explained!

            • JonsJava@lemmy.world
              link
              fedilink
              English
              arrow-up
              15
              ·
              7 months ago

              I’m going to educate you on what this is actually about.

              You think it’s about tracking someone as they go about the web.

              The article is about BLUE SKY tracking the links you click on their site. Two totally different things.

            • Korhaka@sopuli.xyz
              link
              fedilink
              English
              arrow-up
              6
              ·
              7 months ago

              I host a page, you load the page and it has 5 links on it. You can click on any, all or none of the links and my server would have no knowledge of it because after the page has loaded that’s our communication finished. All my server can log is that you loaded the page with the links on it and they were sent to you. What you do with that is up to you.

              JS or manipulating the links would allow me to track which ones you have clicked.

        • ShortFuse@lemmy.world
          link
          fedilink
          English
          arrow-up
          11
          ·
          7 months ago

          No, if you click a link that brings you to or from a site your IP is logged

          No, clicked links that bring to a site do not log your IP. For that you would have to add some sort of JavaScript to intercept the click and then have some JavaScript execute a HTTP Request that passes that information (eg: HTTP POST). Then the IP can be grabbed via that request by the receiving server. Or more importantly, a tracking cookie.

          When clicking a link, the browser may add to Origin header on the HTTP request (HTTP HEAD/GET) that goes to the link’s server. Or the link itself can have UTM parameters, but there’s no guarantee that ever gets back to the original server.

          But the point is if you have a page with 1000 links on it, the server that serves you the page doesn’t know which one you clicked without JavaScript or reframing the link to go elsewhere, which is why this post exists.

          • JonsJava@lemmy.world
            link
            fedilink
            English
            arrow-up
            5
            ·
            7 months ago

            Put perfectly. Had I not been on mobile…I would have written it just as lazily as I did.

            Thanks for taking the time.

    • Ricaz@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      3
      ·
      7 months ago

      So why are they hiding it by changing the link with client-side code? Might not be nefarious, but why?

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

        Most probably so that people don’t hover over the link and see that it doesn’t match, which might confuse them if they don’t know how redirects work.