How can we de-obfuscate an obfuscated svg image? Is it even possible? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

How can we de-obfuscate an obfuscated svg image? Is it even possible?

*** Obfuscated image *** Any link(s) to any website that does it online for free would be appreciated. Or, any algorithm or code that does the work would also be appreciated. Thanking you in advance! :)

3rd Jul 2021, 12:34 PM
Rohit
3 ответов
+ 2
Svg can be converted to base64 image url https://code.sololearn.com/WUVKs6W8q0SN/?ref=app
3rd Jul 2021, 5:17 PM
Calviղ
Calviղ - avatar
+ 1
you could zip the image and >> append to another file: for instance (if you have zip installed) $ls pic.jpg otherpic.jpg $zip pic.zip pic.jpg $cat pic.zip >> otherpic.jpg # then if you unzip otherpic.jpg your zipped picture will be there. I've been messing around and the only thing that sticks out is the file size
3rd Jul 2021, 1:57 PM
Slick
Slick - avatar
+ 1
To deobfuscate JavaScript, visit https://www.dcode.fr/javascript-unobfuscator
3rd Jul 2021, 5:20 PM
Calviղ
Calviղ - avatar