The Internet Archive is still down but will return in ‘days, not weeks’ (www.theverge.com)
from misk@sopuli.xyz to technology@lemmy.world on 11 Oct 2024 22:30
https://sopuli.xyz/post/17952829

#technology

threaded - newest

TheTechnician27@lemmy.world on 11 Oct 2024 23:40 next collapse

It’s definitely been a bit of a pain over on Wikipedia, but I’m glad that the IA is being responsible about this instead of just saying “fuck it, ship it”.

ripcord@lemmy.world on 12 Oct 2024 01:11 collapse

It’s been a pain over on…Wikipedia…?

halcyoncmdr@lemmy.world on 12 Oct 2024 01:17 collapse

Wikipedia often uses Internet Archive links for references so they don’t disappear as sites change or remove content.

DBT@lemmy.world on 12 Oct 2024 01:38 collapse

That and people have been fucking with Wikipedia by adding AI generated nonsense to it lately.

tal@lemmy.today on 12 Oct 2024 00:17 next collapse

No problem. When sites go down, I just rely on the fact that there’s a mirror at the…Internet Archive. Darn.

Randelung@lemmy.world on 12 Oct 2024 14:43 collapse

The internet archive archive. Takes snapshots of the entire archive. It’s unfathomably huge.

tal@lemmy.today on 12 Oct 2024 00:47 collapse

The Wayback Machine’s site has been breached, but its founder says the data is still there.

One concern I do have that’s maybe worth considering is that The Wayback Machine is often used as an authoritative source of what a website was like at some point. Like, if you’re citing information, it’s considered appropriate to link to The Wayback Machine.

There are entities who would potentially be interested in being able to modify that authoritative history.

I don’t think that that’s likely an issue here – someone who wanted to secretly modify the history probably wouldn’t have also modified the site to indicate that it was compromised – but the ability to modify such a representation might have a lot of potential room for abuse.

It might be worthwhile, if the infrastructure permits for it, to do some sort of storage mechanism that makes it hard to spoof old data.

If you’re familiar with blockchains, they leverage a chain of hashes, so that there’s a piece of data dependent on all prior entries. That sort of dependency didn’t originate with blockchain – the CBC cipher mode does the same thing, off the top of my head – and I don’t think that a fully-distributed mode of operation is required here.

However, it might be interesting to use some sort of verifiable storage format where hashes of checkpoints are distributed elsewhere, so that if someone does manage to get into The Internet Archive, they can’t go fiddle with past things without it becoming visible.

Git repositories take advantage of this with their signed commits and hash trees.

If someone gets into The Internet Archive, they could potentially compromise a copy before it gets hashed (though if they supported the submitter signing commits, a la git, that’d avoid that for information that originated from somewhere other than The Internet Archive). This can’t protect against that. But it can protect the integrity of information archived prior to the compromise, which could be rather important.

Evil_incarnate@lemm.ee on 12 Oct 2024 08:39 next collapse

However, it might be interesting to use some sort of verifiable storage format where hashes of checkpoints are distributed elsewhere, so that if someone does manage to get into The Internet Archive, they can’t go fiddle with past things without it becoming visible.

Why not use a write only medium, like CDs but obviously bigger capacity. Write once read many kind of thing. It’s an archive, it should not be able to be changed.

Giooschi@lemmy.world on 12 Oct 2024 13:35 next collapse

write only medium

I guess you meant “write once”?


Anyway, this won’t prevent attacks that somehow swap the CD being read, or the backend logic for where to read the data from.

tal@lemmy.today on 12 Oct 2024 13:58 collapse

That’s a thought, though my guess is that access time constraints for something like a CD might mean that it could at most be a secondary form of storage.

Giooschi@lemmy.world on 12 Oct 2024 13:33 collapse

You cited Git as an example, but in Git it’s possible to e.g. force-push a branch and if someone later fetches it with no previous knowledge they will get the original version.

The problem is the “with non previous knowledge” and is the reason this isn’t a storage issue. The way you would solve this in git would be to fetch a specific commit, i.e. you need to already know the hash of the data you want.

For the Wayback Machine this could be as simple as embedding that hash in the url. That way when someone tries to fetch that url in the future they know what to expect and can verify the website data matches the hash.

This won’t however work if you don’t already have such hash or you don’t trust the source of it, and I don’t think there’s something that will ever work in those cases.