Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.216.93.197
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
panel /
BTPanel /
templates /
default /
[ HOME SHELL ]
Name
Size
Permission
Action
autherr.html
14.66
KB
-rwxr-xr-x
close.html
329
B
-rwxr-xr-x
config.html
27.09
KB
-rwxr-xr-x
control.html
15.72
KB
-rwxr-xr-x
crontab.html
4.08
KB
-rwxr-xr-x
database.html
6.76
KB
-rwxr-xr-x
docker.html
14.83
KB
-rwxr-xr-x
down.html
128.08
KB
-rwxr-xr-x
error.html
152
B
-rwxr-xr-x
error2.html
6.13
KB
-rwxr-xr-x
error3.html
7.74
KB
-rwxr-xr-x
files.html
24.26
KB
-rwxr-xr-x
files_test.html
4.81
KB
-rwxr-xr-x
firewall.html
24.12
KB
-rwxr-xr-x
firewall_new.html
14.68
KB
-rwxr-xr-x
ftp.html
12.65
KB
-rwxr-xr-x
index.html
13.88
KB
-rwxr-xr-x
index_new.html
3.88
KB
-rwxr-xr-x
install.html
2.35
KB
-rwxr-xr-x
layout.html
36.73
KB
-rwxr-xr-x
license.html
19.63
KB
-rwxr-xr-x
login.html
74.73
KB
-rwxr-xr-x
logs.html
22.37
KB
-rwxr-xr-x
modify_password.html
2.74
KB
-rwxr-xr-x
movie.html
131
B
-rwxr-xr-x
panel_error.html
1.02
KB
-rwxr-xr-x
plugin_error.html
1.45
KB
-rwxr-xr-x
site.html
4.15
KB
-rwxr-xr-x
soft.html
3.57
KB
-rwxr-xr-x
tips.html
56.32
KB
-rwxr-xr-x
unsubscribe.html
7.73
KB
-rwxr-xr-x
xterm.html
6.78
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : modify_password.html
{% extends "layout.html" %} {% block content %} <style type="text/css"> .modify_password { background-color: #fff; margin: 15px; min-height: 500px; } .modify_password .bt-form { width: 380px; } .modify_password .header { font-size: 19px; margin-bottom: 15px; } .modify_password .bt-input-text { height: 40px !important; line-height: 40px !important; border-radius: 2px; width: 100% !important; font-size: 14px; } .modify_password_btn { width: 340px; height: 40px; background: #20a53a; background: linear-gradient(#20a53a, #189d32); box-shadow: inset 0 1px 2px #30ad42; color: #fff; text-shadow: #00851a 0 -1px 0; border: 1px solid #20a53a; text-align: center; font-size: 14px; color: #fff; border-radius: 3px; cursor: pointer; } .random_paw { position: absolute; top: 10px; right: 5px; } .bt-form { position: absolute; top: 120px; left: 50%; margin-left: -150px; padding: 40px 20px; } .bt-form .line { position: relative; } .bt-form input { margin-bottom: 10px; } </style> <div class="main-content pb55" style="min-height: 525px"> <div class="container-fluid modify_password"> <div class="bt-form" style="text-align: center"> <span class="header" style="">The panel password has expired, please change the password immediately!</span> <div class="line" style="margin-top: 15px"> <input class="bt-input-text" type="text" name="password1" id="p1" value="" placeholder="New password" style="width: 300px" /> <span title="Generate" class="btn btn-success btn-sm random_paw" onclick="randPwd(16)">Generate</span> </div> <div class="line"> <input class="bt-input-text" type="text" name="password2" id="p2" value="" placeholder="Re-type your new password" style="width: 300px" /> </div> <div> <button type="button" class="btn btn-success btn-sm modify_password_btn" onclick="modify_password()">Change now</button> <div class="public_key" style="display: block" data="{{data['public_key']}}"></div> </div> </div> </div> </div> {% endblock %} {% block scripts %} {{ super() }} <script type="text/javascript" src="/static/js/jsencrypt.min.js"></script> <script type="text/javascript"> function modify_password() { p1 = $('#p1').val(); p2 = $('#p2').val(); if (p1 == '' || p1.length < 8) { layer.msg(lan.bt.pass_err_len, { icon: 2, }); return; } var pdata = { password1: rsa.encrypt_public(p1), password2: rsa.encrypt_public(p2), }; $.post('/config?action=setPassword', pdata, function (b) { if (b.status) { layer.msg(b.msg, { icon: 1, }); setTimeout(function () { location.href = '/'; }, 3000); } else { layer.msg(b.msg, { icon: 2, time: 8000, }); } }); } </script> {%endblock %}
Close