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