Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=4)
-   -  

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

(http://stream-recorder.com/forum/showthread.php?t=16727)

gaaara 09-14-2014 10:35 AM

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


 
Tomorrow we'll see if that changes or not :)

KSV 09-14-2014 08:08 PM

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


 
so my suspicion was correct. they are changing keys on rotational basis. anybody trying to use my script should extract new key from mulutibu.swf file (AES.iv function) and replace the same in my script before doing the decryption.

gaaara 09-14-2014 08:22 PM

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


 
how to download the swf files on my pc is not possible i use this website temporarily http://www.showmycode.com/

I would like to create a script to automatically download and decompile the files

denobis 09-15-2014 09:00 AM

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


 
You could try something like

Code:

                $video        ="http://animedigitalnetwork.fr/video/nabari/1209-episode-1-l-eveille";
                $mulutibu="http://animedigitalnetwork.fr/components/com_vodvideo/mediaplayer/plugins/mulutibu/mulutibu_v4_3.swf?2014-9-15";
               
                $cookie="18acd9b63ecbf50de0b8c010c2b7289f=scr7v5sbl1cigjea4r34t1o164; _gat=1; 029c45c1dfee71ebf42bcb3e469d93a8=192723e9683e7be6fe590f5e2cea5495; YWRuLWF1dGhfNTY0XzA=5416ddb290d49389328251; a2506a7b1c9f80a536e0f254bf8c954d=424441415146+A+5+B55465917+7425D595D141D1111+344444E5642+6415F404A+A5B465146+01D+D1219; _ayl_ga=GA1.2.979632947.1410784725; 4447d1d3085bd19536e003183aa51b5f=aa9fd9fdebdc9c032c71330332060f8d; _ga=GA1.2.884074519.1410784653; YWRuLWF1dGhfMTIwOV85Nzk1Mg=5416dea5ec396591227138";
                                       
                $opts = array(
                                'http'=>array(
                                    'method'=>"GET",
                                    'header'=>
                                            "User-Agent:                stagefright/1.2 (Linux;Android 4.2.2)\r\n".
                                        "Accept:                text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n".
                                        "Connection:                keep-alive\r\n".
                                        "Accept-Encoding:        gzip,deflate\r\n".
                                        "Cookie:                $cookie\r\n".
                                        "Referer:                $video\r\n",
                                    //'proxy' => "tcp://$prox",
                                    )
                                );
                       
                $context        = stream_context_create($opts);
                $swf                = file_get_contents($mulutibu, false, $context);
                                               
                $swf=bin2hex(gzuncompress(substr($swf,8)));
               
                $iv=explode("24",extrae($swf,"62052404d3a215d3ffff620848","d030","5620"));
               
                $key="";
               
                foreach ($iv as $c)
                        {
                        $actual=chr(hexdec(substr($c,0,2)));
                        $key.=$actual;
                        if (strlen($c)>2)
                                $key.=$actual;                                                       
                        }
               
                echo $key;

The cookies and the url of mulutibu can change, but the extractor seems fine if only changes the key inside the swf.

gaaara 09-15-2014 11:43 AM

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


 
how to use this script ?

denobis 09-15-2014 01:45 PM

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


 
Copy & save the next to adnivkey.php in the php directory

Code:

<?php     
        $video        ="http://animedigitalnetwork.fr/video/nabari/1209-episode-1-l-eveille";
                $mulutibu="http://animedigitalnetwork.fr/components/com_vodvideo/mediaplayer/plugins/mulutibu/mulutibu_v4_3.swf?2014-9-15";
               
                $cookie="18acd9b63ecbf50de0b8c010c2b7289f=scr7v5sbl1cigjea4r34t1o164; _gat=1; 029c45c1dfee71ebf42bcb3e469d93a8=192723e9683e7be6fe590f5e2cea5495; YWRuLWF1dGhfNTY0XzA=5416ddb290d49389328251; a2506a7b1c9f80a536e0f254bf8c954d=424441415146+A+5+B55465917+7425D595D141D1111+344444E5642+6415F404A+A5B465146+01D+D1219; _ayl_ga=GA1.2.979632947.1410784725; 4447d1d3085bd19536e003183aa51b5f=aa9fd9fdebdc9c032c71330332060f8d; _ga=GA1.2.884074519.1410784653; YWRuLWF1dGhfMTIwOV85Nzk1Mg=5416dea5ec396591227138";
                                       
                $opts = array(
                                'http'=>array(
                                    'method'=>"GET",
                                    'header'=>
                                                "User-Agent:                stagefright/1.2 (Linux;Android 4.2.2)\r\n".
                                                "Accept:                    text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n".
                                                "Connection:                keep-alive\r\n".
                                                "Accept-Encoding:        gzip,deflate\r\n".
                                                "Cookie:                    $cookie\r\n".
                                                "Referer:                    $video\r\n",
                            //'proxy' => "tcp://213.174.124.185:3128",
                                    )
                                );
                       
                $context        = stream_context_create($opts);
       
                $swf                = file_get_contents($mulutibu, false, $context);
                                                               
                $swf=bin2hex(gzuncompress(substr($swf,8)));               
           
                $iv=explode("24",explode("5620",explode("d030",explode("62052404d3a215d3ffff620848",$swf)[1])[1])[0]);
               
                $key="";
               
                foreach ($iv as $c)
                        {
                        $actual=chr(hexdec(substr($c,0,2)));
                        $key.=$actual;
                        if (strlen($c)>2)
                                $key.=$actual;                                                       
                        }
               
        echo $key;
                file_put_contents("adnivkey.txt", $key);
?>

and run it with php.exe. The result in the archive adnivkey.txt. I think it works if you are in France, but with vpn i dont know. Try.

gaaara 09-15-2014 02:03 PM

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


 
i don not have any text files sorry im on linux

blurg 09-16-2014 05:44 AM

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


 
with windows i have this message in CMD

Code:

C:\php>php teste.php

Warning: gzuncompress(): data error in C:\php\teste.php on line 25


denobis 09-16-2014 02:04 PM

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


 
The problem are the cookies.

Try this

http://www.mediafire.com/view/jmx257...extractkey.php

with login

php adnextractkey.php --login=login --pass=password

If you dont want proxies pass --noproxy too.

gaaara 09-16-2014 10:54 PM

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


 
hello

it is not necessary to use cookie for downloads this swf test this smal script :)

Code:

<?php
$swffile = file_get_contents('http://animedigitalnetwork.fr/components/com_vodv$
file_put_contents('mulutibu_v4_3.swf', $swffile);
?>

it works :) is an exemple :)


All times are GMT -6. The time now is 03:27 PM.