Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #41  
Old 09-14-2014, 11:35 AM
gaaara gaaara is offline
Member
 
Join Date: Nov 2013
Posts: 63
gaaara is on a distinguished road
Default

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


Tomorrow we'll see if that changes or not
Reply With Quote
  #42  
Old 09-14-2014, 09:08 PM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

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.
Reply With Quote
  #43  
Old 09-14-2014, 09:22 PM
gaaara gaaara is offline
Member
 
Join Date: Nov 2013
Posts: 63
gaaara is on a distinguished road
Default

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
Reply With Quote
  #44  
Old 09-15-2014, 10:00 AM
denobis denobis is offline
Senior Member
 
Join Date: Sep 2013
Posts: 568
denobis is on a distinguished road
Default

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.
Reply With Quote
  #45  
Old 09-15-2014, 12:43 PM
gaaara gaaara is offline
Member
 
Join Date: Nov 2013
Posts: 63
gaaara is on a distinguished road
Default

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


how to use this script ?
Reply With Quote
  #46  
Old 09-15-2014, 02:45 PM
denobis denobis is offline
Senior Member
 
Join Date: Sep 2013
Posts: 568
denobis is on a distinguished road
Default

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.
Reply With Quote
  #47  
Old 09-15-2014, 03:03 PM
gaaara gaaara is offline
Member
 
Join Date: Nov 2013
Posts: 63
gaaara is on a distinguished road
Default

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


i don not have any text files sorry im on linux
Reply With Quote
  #48  
Old 09-16-2014, 06:44 AM
blurg blurg is offline
Member
 
Join Date: Jul 2014
Posts: 32
blurg is on a distinguished road
Default

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

Last edited by blurg : 09-16-2014 at 09:13 AM.
Reply With Quote
  #49  
Old 09-16-2014, 03:04 PM
denobis denobis is offline
Senior Member
 
Join Date: Sep 2013
Posts: 568
denobis is on a distinguished road
Default

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.
Reply With Quote
  #50  
Old 09-16-2014, 11:54 PM
gaaara gaaara is offline
Member
 
Join Date: Nov 2013
Posts: 63
gaaara is on a distinguished road
Default

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
Reply With Quote
Reply Post New Thread
Tags: ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 08:21 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons