View Single Post
  #78  
Old 11-12-2014, 10:55 AM
Informatoque Informatoque is offline
Junior Member
 
Join Date: Nov 2014
Posts: 2
Informatoque is on a distinguished road
Default

Re: how to decrypt and decode png files to real file (.ass)


Yeah please if anyone finds a new solution...

Denobis, it'd be great if you could help. I'm not asking for all the work to be done because I've researched the problem myself but now I'm stuck:

It seems to not be possible to access the mulutibu_v4_3.swf file anymore but I've done some research and decompiling and I found a file called mediaplayer.js (I've attached it) and here's what seems interesting:
Code:
var today =  new Date();
					var todayString = today.getFullYear() + "-" + (today.getMonth()+1) + "-" + today.getDate();
					var mulutibu = mediaPlayerDirectory + "plugins/mulutibu/mulutibu_v4_3.swf?" + todayString;
					if (this.get("simpleMode")) {
						mulutibu = mediaPlayerDirectory + "plugins/mulutibu/mulutibu_v4_3.simple.swf?" + todayString;
					}
					if (this.get("fan")) {
						mulutibu = mediaPlayerDirectory + "plugins/mulutibu/mulutibu_v4_3.fan.swf?" + todayString;
					}
					plugins[mulutibu] = {
						back: false,
						cc: this.get("login")
					};
So from that I tried the mulutibu_v4_3.simple.swf file and there seems to be no AES.as file.
So then I tried the mulutibu_v4_3.fan.swf file and there was an AES.as file (which I've also attached).
But now I'm stuck and can't go any further so any help is appreciated

Thanks
Attached Files
File Type: zip mediaplayer.js.zip (6.0 KB, 0 views)
File Type: zip AES.as.zip (2.6 KB, 0 views)
Reply With Quote