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.
25 lines
405 B
ActionScript
25 lines
405 B
ActionScript
// input: []
|
|
// output: 123
|
|
|
|
package {
|
|
public class NeOperator {
|
|
public static function main(): int {
|
|
var res:int = 0;
|
|
if (1 != 2) {
|
|
res += 3;
|
|
} else {
|
|
res += 4;
|
|
}
|
|
if (2 != 2) {
|
|
res += 10;
|
|
} else {
|
|
res += 20;
|
|
}
|
|
if (9 == 9) {
|
|
res += 100;
|
|
}
|
|
return res;
|
|
}
|
|
}
|
|
}
|