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
  #61  
Old 10-02-2014, 03:59 PM
baka.shinji baka.shinji is offline
Junior Member
 
Join Date: Oct 2014
Posts: 15
baka.shinji is on a distinguished road
Default

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


I tried several Times with denobis hints without result.
I 'can't get the decryption Key :/
Reply With Quote
  #62  
Old 10-02-2014, 05:50 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)


Try http://www.mediafire.com/download/o7...2/adnivkey.exe

Usage

adnivkey --login=login --pass=pass

if you are in France add --noproxy

The ivkey now is 73e13fae869893a5d9d1bc7d9cb96836
Reply With Quote
  #63  
Old 10-03-2014, 01:53 AM
baka.shinji baka.shinji is offline
Junior Member
 
Join Date: Oct 2014
Posts: 15
baka.shinji is on a distinguished road
Default

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


I works!
Thank you very much Denobis, for your work and your patience
Reply With Quote
  #64  
Old 10-03-2014, 07:21 AM
blurg blurg is offline
Member
 
Join Date: Jul 2014
Posts: 32
blurg is on a distinguished road
Exclamation

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


@denobis : i have test your key but i have another problem

$key = 73e13fae869893a5d9d1bc7d9cb96836

shell dos :

error ligne xx e13fae869893a5d9d1bc7d9cb96836
Reply With Quote
  #65  
Old 10-03-2014, 08:43 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)


Quote:
Originally Posted by blurg View Post
@denobis : i have test your key but i have another problem

$key = 73e13fae869893a5d9d1bc7d9cb96836

shell dos :

error ligne xx e13fae869893a5d9d1bc7d9cb96836
Code:
$key = "73e13fae869893a5d9d1bc7d9cb96836";
Reply With Quote
  #66  
Old 10-12-2014, 05:50 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

i have a probleme with key générated of your script dénobis

is a good key is not a probleme juste but it works randomly

on the script
Code:
   $open = fopen("php\key\keyfile.txt", "r");
  $okey=fgets($open,255);
  $td  = mcrypt_module_open('rijndael-128', '', 'ecb', '');
  $iv  = str_repeat("\x00", 16);

  $key = pack("A*",$okey); ## **not working**

  $key = $key . str_repeat("\x00", 32 - strlen($key));
  mcrypt_generic_init($td, $key, $iv);
  $key = mcrypt_generic($td, $key);
  $key = str_repeat(substr($key, 0, 16), 2);
  mcrypt_generic_deinit($td);
the key is readable

test code
Code:
<?php
$key = pack('A*', 'b8e3c43ee882b09ec4e7ace525dfd45');
echo "$key"
?>
résult
Code:
[gaaara@localhost adn]$ php test
b8e3c43ee882b09ec4e7ace525dfd45
jus actualy not works
Reply With Quote
  #67  
Old 10-12-2014, 05:53 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)


Quote:
Originally Posted by gaaara View Post
hello

i have a probleme with key générated of your script dénobis

is a good key is not a probleme juste but it works randomly

on the script
Code:
   $open = fopen("php\key\keyfile.txt", "r");
  $okey=fgets($open,255);
  $td  = mcrypt_module_open('rijndael-128', '', 'ecb', '');
  $iv  = str_repeat("\x00", 16);

  $key = pack("A*",$okey); ## **not working**

  $key = $key . str_repeat("\x00", 32 - strlen($key));
  mcrypt_generic_init($td, $key, $iv);
  $key = mcrypt_generic($td, $key);
  $key = str_repeat(substr($key, 0, 16), 2);
  mcrypt_generic_deinit($td);
the key is readable

test code
Code:
<?php
$key = pack('A*', 'b8e3c43ee882b09ec4e7ace525dfd45');
echo "$key"
?>
résult
Code:
[gaaara@localhost adn]$ php test
b8e3c43ee882b09ec4e7ace525dfd45
jus actualy not works
$key = $okey; ## **working**

The key is 'b8e3c43ee882b09ec4e7ace525dfd45', dont repack it, but adjust it to 32 bytes

0b8e3c43ee882b09ec4e7ace525dfd45

change the script anyway to

Code:
		$iv=array_slice(explode("24",explode("5620",explode("d030",explode("62052404d3a215d3ffff620848",$swf)[1])[1])[0]),1);
		
		$key="";
		
		foreach ($iv as $c)
			{
                        $actual=sprintf("%02x",chr(hexdec(substr($c,0,2))));
			$key.=str_repeat($actual,strlen($c)/2);
							
			}
Reply With Quote
  #68  
Old 10-12-2014, 06:44 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)


What I have to replace exactl

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));

?>
this part ?
Code:
$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;							
			}
i have edited the files and get this
Code:
ivkey:0609070904010801000000000900050506010202060600040003070000070800
and test not working

I do not understand why the script can not decrypt the file

Last edited by gaaara : 10-12-2014 at 07:50 PM.
Reply With Quote
  #69  
Old 10-12-2014, 07:52 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)


Send me a valid mulutibu.swf
Reply With Quote
  #70  
Old 10-12-2014, 07:58 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)


mp
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 12:19 AM.


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