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
  #91  
Old 03-25-2015, 02:02 PM
Liluy Liluy is offline
Junior Member
 
Join Date: Apr 2014
Posts: 14
Liluy is on a distinguished road
Default

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


New ADN protection.
AES in multibu greatly changed.
Reply With Quote
  #92  
Old 03-25-2015, 02:37 PM
Legremlins_Keitaro Legremlins_Keitaro is offline
Junior Member
 
Join Date: Nov 2013
Posts: 11
Legremlins_Keitaro is on a distinguished road
Default

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


Nothing change, AES is still the same, no difference between september 2014 multibu and march 2015 multibu in the AES function.

But yes, protection change, and now they can block IP to get subtitle => you can show the video but not the subtitle.
Reply With Quote
  #93  
Old 03-26-2015, 08:00 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)


they are another protection inside swf

aes.as (base script)
and aes_constantes.as (new script)

and a few ligne in aes.as script are change
(exemple ligne 147 to 171)
Reply With Quote
  #94  
Old 03-26-2015, 11:25 AM
Liluy Liluy is offline
Junior Member
 
Join Date: Apr 2014
Posts: 14
Liluy is on a distinguished road
Default

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


Yes, if you want to see the difference between the old and the new here.

AES constantes :
package com.longtailvideo.plugins.mulutibu6
{
import mx.core.ByteArrayAsset;

public class AES_Constantes extends ByteArrayAsset
{

public function AES_Constantes()
{
super();
}
}
}

and

public static function d(param1:String, param2:int, param3:int = 63) : String
{

The number after param3: int = changes every day
Attached Files
File Type: txt mulutibu_v4_3 (25-03-2015).txt (11.5 KB, 0 views)
File Type: txt mulutibu_v4_3 (21-03-2015).txt (13.3 KB, 0 views)
Reply With Quote
  #95  
Old 03-26-2015, 01:59 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)


it was just a minor change in key retrieval. rest of the algorithm is still same. i will push the update to my repository soon.
Reply With Quote
  #96  
Old 03-26-2015, 02:21 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)


update pushed to the repository. if they only change third parameter on rotational basis then you can update the $start variable to new one to decrypt successfully. if someone can confirm that they don't change AES constants regularly then script can be further refined to work without requiring any changes at all. i have tested this script on this file.
Reply With Quote
  #97  
Old 03-26-2015, 02:27 PM
Liluy Liluy is offline
Junior Member
 
Join Date: Apr 2014
Posts: 14
Liluy is on a distinguished road
Default

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


Thanks you ! KSV !
It works perfectly !
Reply With Quote
  #98  
Old 03-26-2015, 03:17 PM
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)


thx KSV you're the best

but i have just a question about the key in your update script

Code:
 $key = substr("eab023e7fdc6e8c6908e116bc550aa7099d46f866436c5a763b0fbfb73a23eceb8d313f7722af47d4530bdbd96d970d8821d0707d284b585ff5"....
how do you have this because the ligne 135 in aes.as change everyday too


03/27/2015 00H20
the new mulutibu swf

doesn't work even when i change $start variable
Attached Files
File Type: txt mulutibu_4.3.txt (11.5 KB, 0 views)

Last edited by blurg : 03-26-2015 at 11:25 PM.
Reply With Quote
  #99  
Old 03-27-2015, 01:53 AM
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)


aes constants are embedded as binary data in swf file. you just have to get the new constants and starting number from updated swf file. i have amended the previous commit so you can directly copy paste that data with minimal changes (replace '0x' with '\x') into script.
Reply With Quote
  #100  
Old 03-27-2015, 07:47 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)


how to get this information automatically with a script ? exemple denobis script

Code:
<?php

//get the encryption key
$swf=file_get_contents("mulutibu_v4_3.swf");
$swf        = bin2hex(gzuncompress(substr($swf,8)));
        if (!strpos($swf,"62052404d3a215d3ffff620848")) die("bad");
        
		$iv=explode("24",explode("5620",explode("d030",explode("62052404d3a215d3ffff620848",$swf)[1])[1])[0]);
		
		$key1="";
		
		foreach ($iv as $c)
			{
			$actual=chr(hexdec(substr($c,0,2)));
			$key1.=$actual;
			if (strlen($c)>2)
				$key1.=$actual;							
			}

echo "\r\nivkey:".trim($key1);
        echo "\r\nThe key is in the file adnivkey.txt";
		file_put_contents("adnivkey.txt", trim($key1));

?>
and how to décompile swf files on linux

Last edited by gaaara : 03-27-2015 at 09:12 AM.
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 01:27 PM.


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