41 lines
1.7 KiB
Python
41 lines
1.7 KiB
Python
|
|
#!/usr/bin/python
|
||
|
|
#coding: utf-8
|
||
|
|
# -------------------------------------------------------------------
|
||
|
|
# YakPanel
|
||
|
|
# -------------------------------------------------------------------
|
||
|
|
# Copyright (c) 2015-2099 YakPanel(www.yakpanel.com) All rights reserved.
|
||
|
|
# -------------------------------------------------------------------
|
||
|
|
# Author: hwliang <hwl@yakpanel.com>
|
||
|
|
# -------------------------------------------------------------------
|
||
|
|
|
||
|
|
# -------------------------------------------------------------------
|
||
|
|
# 检测是否开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'
|