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.
18 lines
271 B
ActionScript
18 lines
271 B
ActionScript
// input: []
|
|
// output: 121
|
|
|
|
package {
|
|
public class ClassCall {
|
|
public static function main():int{
|
|
var f:OtherClass = new OtherClass();
|
|
return f.func(100,20);
|
|
}
|
|
}
|
|
}
|
|
|
|
class OtherClass {
|
|
public function func(x: int, y: int):int {
|
|
return x+y+1;
|
|
}
|
|
}
|