Can someone learn to us how to find the key plz ?
On the last AnimeDigital.php script of KSV, I thank I just had to replace
Code:
$key = pack("C*", 48, 99, 101, 102, 56, 56, 56, 101, 56, 48, 99, 51, 49, 48, 57, 49, 54, 102, 55, 101, 97, 98, 100, 97, 54, 100, 51, 97, 51, 98, 57, 52);
by what I found in
Code:
http://xxxxxxxxx.fr/components/com_vodvideo/mediaplayer/plugins/mulutibu/mulutibu_v4_3.fan.swf
In which we have :
scripts/com/longtailvideo/plugins/mulutibu/AES :
private static function iv() : String
{
var _loc1_:Array = [99,99,57,102,99,51,50,50,54,51,57,100,54,100,50,51,57,97,54,50,97,50,99,99,48,101,102,54,100,53,55,98];
var _loc2_:* = "";
var _loc3_:* = 0;
while(_loc3_ < _loc1_.length)
{
_loc2_ = _loc2_ + String.fromCharCode(_loc1_[_loc3_]);
_loc3_++;
}
return _loc2_;
}
After ASCII to CHAR :
Their var _loc1_ = cc9fc322639d6d239a62a2cc0ef6d57b (it's right ?)
But it's not their decrypt key, isn't it ? How to find it ?
on the adnivkey.php this topic gave to us, we have
Code:
$video = the url of the vide;
$mulutibu = "http://animedigitalnetwork.fr/components/com_vodvideo/mediaplayer/plugins/mulutibu/mulutibu_v4_3.swf?2014-12-16";
$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";
...
$iv=explode("24",explode("5620",explode("d030",explode("62052404d3a215d3ffff620848",$swf)[1])[1])[0]);
I don't have this so long cookie...
And the 62052404d3a215d3ffff620848 is the key ? I don't think so...
To be clear on what i'm asking for, how to find the latest decrypt key, and with which script can we decrypt these png ?
Thx in advance for answers !