mirror of
https://github.com/aaPanel/aaPanel.git
synced 2026-09-06 01:27:38 +02:00
1. Added Mail Marketing Automation trigger tasks 2. Added Mail Marketing Groups Import, Export, Merge 3. Added Mail Marketing Subscribers to support paste import 4. Added Mail Marketing Template Import Export Duplicate 5. Added Mail server add timed automatic reply 6. Added HTTPS Protection function for Website (disables automatic HTTP to HTTPS redirection when enabled) 7. Optimize Website Interface Button Integration 8. Optimize the response speed of WP Toolkit interface
41 lines
1.7 KiB
Python
41 lines
1.7 KiB
Python
#!/usr/bin/python
|
|
#coding: utf-8
|
|
# -------------------------------------------------------------------
|
|
# aapanel
|
|
# -------------------------------------------------------------------
|
|
# Copyright (c) 2015-2099 aapanel(http://www.aapanel.com) All rights reserved.
|
|
# -------------------------------------------------------------------
|
|
# Author: hwliang <hwl@bt.cn>
|
|
# -------------------------------------------------------------------
|
|
|
|
# -------------------------------------------------------------------
|
|
# 检测是否开debug模式
|
|
# -------------------------------------------------------------------
|
|
|
|
|
|
import os,sys,re,public
|
|
|
|
_title = 'Developer Mode'
|
|
_version = 1.0 # 版本
|
|
_ps = "Checks whether panel developer mode is enabled" # 描述
|
|
_level = 3 # 风险级别: 1.提示(低) 2.警告(中) 3.危险(高)
|
|
_date = '2020-08-05' # 最后更新时间
|
|
_ignore = os.path.exists("data/warning/ignore/sw_debug_mode.pl")
|
|
_tips = [
|
|
"Turn off developer mode on the [ Settings ] page",
|
|
"Note: Developer mode is only used for panel plug-in or API development, do not use in production environment"
|
|
]
|
|
|
|
_help = ''
|
|
_remind = 'This solution prevents the disclosure of sensitive information and reduces the risk of your website being compromised. '
|
|
|
|
def check_run():
|
|
'''
|
|
@name 开始检测
|
|
@author hwliang<2020-08-05>
|
|
@return tuple (status<bool>,msg<string>)
|
|
'''
|
|
if os.path.exists('/www/server/panel/data/debug.pl'):
|
|
return False,'[Developer mode] has been opened, and risks such as data communication and information leakage exist'
|
|
return True,'Risk-free'
|