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.
14 lines
226 B
ActionScript
14 lines
226 B
ActionScript
// input: [1, 2]
|
|
// output: 3
|
|
|
|
package {
|
|
public class LocalVars {
|
|
public static function main(a:int, b:int):int{
|
|
var c:int = a + b + b;
|
|
var d:int = c - b;
|
|
var e:int = d;
|
|
return e;
|
|
}
|
|
}
|
|
}
|