In 2022 there was some legal furore over a collection of August Sander's photography being sold as NFTs, with the idea that they would be sold for little more than admin fees, under the below pretext:

Each NFT represents ownership of the physical contact print made by Gerd Sander in 1988/89 and depicted by the image as well as access to the August Sander Research Database where the historical legacy of the Sander Family Estate will become publicly available for research. Ownership of the physical contact sheet is determined by the wallet in which the NFT is owned, regardless of wether [sic] the contact print has been redeemed or not.

This NFT collection was taken down from public viewing some time later, though it looks to now be back up for sale, some at around $100k like this one. At the time, however, the NFTs themselves still pointed to the image and, consequently, its directory on the cloud, which was hosted by the IPFS peer-to-peer filesharing service Pinata. So, if you were to get a look at one of these NFTs, you'd find the url in there.

You can see similar metadata through this inexplicably publicly-accessible link to the August Sander Foundation website: https://asrd.augustsander.org/


image


As you may notice the OpenSea sales platform isn't ideal for viewing the entire collection. Each individual listing does give access to a large-ish JPEG suitable for, say, a mediocre A4 inkjet printing, but it's inconvenient and a bit tedious for people who are interested in, say, looking at the work of August Sander. The August Sander Foundation provides an interface for viewing 500 (very) low-resolution, randomly-selected images from the archive. Pretty neat albeit useless for properly looking at the work of August Sander (if you do want to look at August Sander's work check this book scan at Internet Archive).

Perhaps for all these reasons there was less concern over dumb shit like file security, and nobody thought to make these filenames more complicated than an ordinal list. I'm not going to give you the full correct URL but I will tell you that it looks a bit like this:

https://theartregister.mypinata.cloud/ipfs/aWholeBunchOfRandomLetters/full/1.jpg

And with the above in mind + just to have fun around that time I wrote this:

THIS SCRIPT HAS BEEN WRITTEN FOR PURELY ACADEMIC PURPOSES AND I DID NOT USE IT FOR ANYTHING BUT TESTING I DOWNLOADED LIKE 15 IMAGES AND THEN DELETED THEM ALL DON'T SUE ME BRO ITS COOL BRO WE CAN RELAX AND EAT CHEESECAKE TOGETHER AND TALK IT OUT OK BRO

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
  int lower, upper;
  scanf("%i", &lower);
  scanf("%i", &upper);
  if (upper > 10396 || lower < 1 || lower > upper) return 1;
  
  char buffer[200];
  char *prefix = "the url lol maybe there's a way to find it who knows";
  
  while (lower <= upper) {
    sprintf(buffer, "wget %s%i.jpg", prefix, lower);
    system(buffer);
    printf("%s\nDownloading image #%i", buffer, lower);
    lower++;
  }
}

For the ASF's various flaws, I'd like to praise their typography which imo is very nice:



Anyway Andrew Molitor wrote on Twitter on Mar 18, 2022:

  • gotta say a side note about the Sander NFTs is that a 1500x2000 scan which includes a generous wide border and notes isn't anything I would call a "high resolution" scan. If anything, this suggests even more than nobody gives a shit about the art.

...and with the exception of anyone who actually cashed in their tokens for the original contact prints, this is the final sentence of this blogpost.