JavaScript" Packed" CSharp

时间:2017-02-12 18:39:52

标签: javascript c# jint

我有一个来自JavaScript的混淆(p,a,c,k,e,d)函数。

string value = @"eval(function(p,a,c,k,e,d)
            {while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);
            return p}
('3("3b").3a({39:\"5://1b.1a.19.8:18/38/v.37\",36:\"5://1b.1a.19.8:18/i/35/34/33.32\",31:\"\",30:\"2z\",2y:\"2x\",2w:2v,2u:\"7\",2t:\"2s\",2r:[],2q:{2p:\'#2o\',2n:22,2m:\"2l\",2k:0}});b f;b k=0;b 6=0;3().2j(2(x){a(6>0)k+=x.17-6;6=x.17;a(0!=0&&k>=0){6=-1;3().2i();3().2h(2g);$(\'#2f\').j();$(\'h.g\').j()}});3().2e(2(x){6=-1});3().2d(2(x){16(x)});3().2c(2(){$(\'h.g\').j()});2 16(x){$(\'h.g\').2b();a(f)2a;f=1;$.29(\'5://12.9/15-28/27.15?26=25&24=23&21=20-1z-1y-1x-1w\',2(14){$(\'#1v\').1u(14)})};3().1t(\'1s\',2(){b 13=3().1r();13.1q(\'1p\',2(){11.10(\'z-y\')[0].w[1].1o=\"5://12.9\";11.10(\'z-y\')[0].w[1].1n=\"<u>1m - 1l 1k 1j & 1i</u>\"});a($.c(\'4\')==\"d\"){t.s(\"5://r.q.p/o/7.n\",\"m 9 1h\",e,\"l\")}1g{t.s(\"5://r.q.p/o/d.n\",\"m 9 1f\",e,\"l\")}});2 e(){$.c(\'4\')==\'7\'?4=\'d\':4=\'7\';$.c(\'4\',4);1e.1d.1c()};',36,120,'||function|jwplayer|primaryCookie|http|p02887336|html5||to|if|var|cookie|flash|switchMode|vvplay|video_ad|div||show|tt2887336|button2|Switch|png|images|tv|flashx|static|addButton|this|center||childNodes||featured|jw|getElementsByClassName|document|streamin|container|data|cgi|doPlay|position|8777|213|211|95|reload|location|window|Flash|else|HTML5|Storage|Sharing|Video|Free|Streamin|innerHTML|href|contextmenu|addEventListener|getContainer|ready|on|html|fviews|fb98c55a544241de2464a88086a6b0c9|1486917733|186|182|2887336|hash||2ca0tpqawtre|file_code|view|op|index_dl|bin|get|return|hide|onComplete|onPlay|onSeek|play_limit_box|false|setFullscreen|stop|onTime|backgroundOpacity|Arial|fontFamily|fontSize|FFFFFF|color|captions|tracks|start|startparam|primary|326|height|580|width|2638|duration|skin|jpg|lhl2j9yhfp1s|00085|01|image|mp4|rwi7bsgc5huzcg3h5fpsfen3362uwfp4cyzyo2mavczsvbbx4tnesmwhdteq|file|setup|vplayer'.split('|')))"

我正在尝试使用jint来解释并获取上述function的值,但是当我在jint engine中执行语句时,它会引发jwplayer is not defined的异常。

我知道为什么会抛出异常,但我只想获得上面p的值。但jint运行整个函数,然后以一个不存在的空函数结束,当它尝试运行它时,抛出异常。

我只希望它返回字符串中的值,它不应再运行它。我已经尝试过寻找答案,但到目前为止一无所获 我使用的代码如下:

 Jint.Engine jEngine = new Jint.Engine();
 var linkString = jEngine.Execute(value).GetCompletionValue().ToString();
 var arrayFile = linkString.Split(' ', '\n');

我在这里缺少什么?如果有人能够对它有所了解。非常感谢。感谢

1 个答案:

答案 0 :(得分:0)

我认为在打包函数的开头问题是http.request(url, function(res) { var data = ""; res.on('data', function (chunk) { data += chunk; }); res.on("end", function() { return data }); }).on("error", function(e) { console.log("Got error: " + e.message); return e; }); 。它在获取值后运行代码。所以我删除了eval部分,现在它按预期工作。