deobfuscates the video URL using a reverse engineered version of KVS player's algorithm. This was tested against version 4.0.4, 5.0.1 and 5.1.1.4 of the player and a warning will be issued if the major version changes.
23 lines
329 B
ActionScript
23 lines
329 B
ActionScript
// input: []
|
|
// output: 9
|
|
|
|
package {
|
|
public class PrivateVoidCall {
|
|
public static function main():int{
|
|
var f:OtherClass = new OtherClass();
|
|
f.func();
|
|
return 9;
|
|
}
|
|
}
|
|
}
|
|
|
|
class OtherClass {
|
|
private function pf():void {
|
|
;
|
|
}
|
|
|
|
public function func():void {
|
|
this.pf();
|
|
}
|
|
}
|