Advertisement
Guest User

How to rip/download fakku subscription galleries

a guest
Oct 6th, 2015
54,389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. **************** [How to rip/download fakku subscription galleries] ****************
  2. So I was having some fun checking out how well protected fakku subscriptions is against direct ripping / downloading of the images, mainly because I want to back everything up to re-read it later or offline / when my internet is too slow.
  3.  
  4. DISCLAIMER: I do NOT promote piracy. this is meant to be used for personal use and back-up of your fakku subscription doujins. redistributing them is illegal. get a fakku subscription. it's worth it.
  5.  
  6. TL;DR
  7. - kill all chrome / chromium processes
  8. - chromium-browser --disable-web-security
  9. - open desired doujin on fakku subscriptions
  10. - shift + ctrl + j
  11. - document.getElementsByTagName('canvas')[1].toDataURL()
  12. - press enter
  13. - double click the base64 result
  14. - save the image
  15. - repeat for every page
  16.  
  17. Long explanation:
  18. - by checking the cache, I can see that the reader retrieves scrambled images that are then unscrambled by the reader which is a 3k lines obfuscated javascript.
  19. - the reader ultimately renders everything on a html5 canvas, so I immediately tried
  20. document.getElementsByTagName('canvas')[1].toDataURL()
  21. from the javascript console but it didn't work because of the CORS security stuff.
  22. - restarted chromium with --disable-web-security
  23. - toDataURL now works and I can simply open and save the base64 data url as an image.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement