Heads up
BAKER
Bread number is off-by-one. Should be #558.
IMAGE HACK
Finding that some board images can loaded from sys.8kun.top. The toy javascript below rewrites all anchors from media.8kun.top to sys.8kun.top, and adds a cache-busting random integer to the querystring, as proof of concept.
Specifically it appears .jpg files can still be served from sys.8kun.top. Not sure why, though I seem to remember CM talking about some cache service before the move to 8kun... best guess is that sys is fetching the images from that in-memory cache.
Try it yourself:
https://media.8kun.top/file_store/4d4f3b67da7edeffaaf58f7faff873b4d76bc134716d3e69dfd74c58d1f52cfd.jpg?n=30470285174
-vs-
https://sys.8kun.top/file_store/4d4f3b67da7edeffaaf58f7faff873b4d76bc134716d3e69dfd74c58d1f52cfd.jpg?n=30470285174
function RewriteMediaUrls(){ var links = Array.from(document.querySelectorAll('a')) var imageLinks = links.filter(l =/.media.8kun.top./ig.test(l.href)) imageLinks.forEach(link => { var n = Math.floor(Math.random() * 77777777777) + 1 var href = ${link.href.replace("media.","sys.")}?n=${n}
var imgs = link.querySelectorAll('img') imgs.forEach(i => i.src = href) link.href = href })}RewriteMediaUrls()var rewriteInterval = setInterval(RewriteMediaUrls, 5000)