-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[readcomiconline] URLs are not supported/enabled #2481
Comments
All image URLs seem to have been encrypted. Should be possible to undo that, but reverse engineering obfuscated JS code is a pain. I honestly wonder why. It's not like automated downloads costs the site anything, since everything hosted on blogspot and not their own servers. |
Since adding obfuscation they've already changed the algorithm once. If you want to maintain it, here's the current algorithm, albeit in js: function beau(lstImages) {
return lstImages.map(url => {
if (url.startsWith('https')) {
return url;
}
const containsS0 = url.includes('=s0');
url = url.slice(0, containsS0 ? -3 : -6);
url = url.slice(4, 22) + url.slice(25);
url = url.slice(0, -6) + url.slice(-2);
url = atob(url);
url = url.slice(0, 13) + url.slice(17);
url = url.slice(0, -2) + (containsS0 ? '=s0' : '=s1600');
return 'https://2.bp.blogspot.com/' + url;
});
} |
so for a while now this website been havin some issues, most of which were solved by exporting the cookies.txt file altho a new type of error began happening which is
The text was updated successfully, but these errors were encountered: