Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
temppayment /
pg /
ldaplogin /
[ HOME SHELL ]
Name
Size
Permission
Action
adarsh
[ DIR ]
drwxr-xr-x
new1
[ DIR ]
drwxr-xr-x
authenticate.php
1.35
KB
-rw-r--r--
index--.html
1.99
KB
-rw-r--r--
index.php
1.99
KB
-rw-r--r--
login.php
539
B
-rw-r--r--
protected.php
512
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index--.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Hyperslice</title> <meta name="description" content=""> <meta name="author" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/skeleton.css"> <link rel="icon" type="image/png" href="images/favicon.png"> </head> <body> <?php // initialize session session_start(); include("authenticate.php"); // check to see if user is logging out if(isset($_GET['out'])) { // destroy session session_unset(); $_SESSION = array(); unset($_SESSION['user'],$_SESSION['access']); session_destroy(); } // check to see if login form has been submitted if(isset($_POST['uname'])){ // run information through authenticator if(authenticate($_POST['uname'],$_POST['psw'])) { // authentication passed header("Location: protected.php"); die(); } else { // authentication failed $error = 1; } } // output error to user if(isset($error)) echo "Login failed: Incorrect user name, password, or rights<br />"; // output logout success if(isset($_GET['out'])) echo "Logout successful"; ?> <div class="container"> <div class="row"> <div class="one-half column" style="margin-top: 25%"> <form method="post" action="index.html"> <div class="container"> <label for="uname"><b>Username</b></label> <input type="text" placeholder="Enter Username" name="uname" required> <label for="psw"><b>Password</b></label> <input type="password" placeholder="Enter Password" name="psw" required> <input type="submit" name="submit" value="submit" ></input> <label> <input type="checkbox" checked="checked" name="remember"> Remember me </label> </div> </form> </div> </div> </div> </body> </html>
Close