this post was submitted on 11 Aug 2023
499 points (96.8% liked)

Privacy

31958 readers
933 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 5 years ago
MODERATORS
 

Note: This post now archived and as such no longer works

An external image showing your user-agent and the total "hit count"

you are viewing a single comment's thread
view the rest of the comments
[–] Anticorp@lemmy.ml 5 points 1 year ago (2 children)

You can run Geolocation with images now? What the heck? How?

[–] skullgiver@popplesburger.hilciferous.nl 23 points 1 year ago* (last edited 1 year ago)

The image is generated on demand by a PHP script. It's not a static image file. Every time the web browser sends a GET /poc.png, a new image is generated based on the information your browser or app sends the server.

It's actually how a lot of tracking code works. The image data returned may be the same, but the data collection through cookies and maybe even some passive fingerprinting all happen every time you send a request.

[–] lightstream@lemmy.ml 10 points 1 year ago (1 children)

It's not the image, it's a normal image. The server does the hard work when you make the request, and then it just builds the image accordingly.

[–] Anticorp@lemmy.ml 4 points 1 year ago

Yeah I saw OPs explanation in the comments. That is fucking cool! And scary! I've never needed to generate images with code before, so Ive never even considered something like this before.