mirror of
https://github.com/aaPanel/aaPanel.git
synced 2026-08-17 21:25:47 +02:00
Submit aaPanel version 6.0.5
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||
<title>404</title>
|
||||
<style>
|
||||
body{
|
||||
background-color:#444;
|
||||
font-size:14px;
|
||||
}
|
||||
h3{
|
||||
font-size:60px;
|
||||
color:#eee;
|
||||
text-align:center;
|
||||
padding-top:30px;
|
||||
font-weight:normal;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h3>404, the file you requested does not exist!</h3>
|
||||
</body>
|
||||
</html>
|
||||
Binary file not shown.
@@ -0,0 +1,131 @@
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `backup` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`type` INTEGER,
|
||||
`name` TEXT,
|
||||
`pid` INTEGER,
|
||||
`filename` TEXT,
|
||||
`size` INTEGER,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `binding` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`pid` INTEGER,
|
||||
`domain` TEXT,
|
||||
`path` TEXT,
|
||||
`port` INTEGER,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `config` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`webserver` TEXT,
|
||||
`backup_path` TEXT,
|
||||
`sites_path` TEXT,
|
||||
`status` INTEGER,
|
||||
`mysql_root` TEXT
|
||||
);
|
||||
|
||||
INSERT INTO `config` (`id`, `webserver`, `backup_path`, `sites_path`, `status`, `mysql_root`) VALUES
|
||||
(1, 'nginx', '/www/backup', '/www/wwwroot', 0, 'admin');
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `crontab` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`name` TEXT,
|
||||
`type` TEXT,
|
||||
`where1` TEXT,
|
||||
`where_hour` INTEGER,
|
||||
`where_minute` INTEGER,
|
||||
`echo` TEXT,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `databases` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`pid` INTEGER,
|
||||
`name` TEXT,
|
||||
`username` TEXT,
|
||||
`password` TEXT,
|
||||
`accept` TEXT,
|
||||
`ps` TEXT,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `firewall` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`port` TEXT,
|
||||
`ps` TEXT,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
INSERT INTO `firewall` (`id`, `port`, `ps`, `addtime`) VALUES
|
||||
(2, '80', '网站默认端口', '0000-00-00 00:00:00'),
|
||||
(3, '8888', 'WEB面板', '0000-00-00 00:00:00'),
|
||||
(4, '21', 'FTP服务', '0000-00-00 00:00:00'),
|
||||
(5, '22', 'SSH远程管理服务', '0000-00-00 00:00:00');
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `ftps` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`pid` INTEGER,
|
||||
`name` TEXT,
|
||||
`password` TEXT,
|
||||
`path` TEXT,
|
||||
`status` TEXT,
|
||||
`ps` TEXT,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `logs` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`type` TEXT,
|
||||
`log` TEXT,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `sites` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`name` TEXT,
|
||||
`path` TEXT,
|
||||
`status` TEXT,
|
||||
`index` TEXT,
|
||||
`ps` TEXT,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `domain` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`pid` INTEGER,
|
||||
`name` TEXT,
|
||||
`port` INTEGER,
|
||||
`addtime` TEXT
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `users` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`username` TEXT,
|
||||
`password` TEXT,
|
||||
`login_ip` TEXT,
|
||||
`login_time` TEXT,
|
||||
`phone` TEXT,
|
||||
`email` TEXT
|
||||
);
|
||||
|
||||
INSERT INTO `users` (`id`, `username`, `password`, `login_ip`, `login_time`, `phone`, `email`) VALUES
|
||||
(1, 'admin', '21232f297a57a5a743894a0e4a801fc3', '192.168.0.10', '2016-12-10 15:12:56', 0, '287962566@qq.com');
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `tasks` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`name` TEXT,
|
||||
`type` TEXT,
|
||||
`status` TEXT,
|
||||
`addtime` TEXT,
|
||||
`start` INTEGER,
|
||||
`end` INTEGER,
|
||||
`execstr` TEXT
|
||||
);
|
||||
@@ -0,0 +1,24 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Congratulations, the site was created successfully!</title>
|
||||
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.4/css/bootstrap.min.css">
|
||||
<script src="//cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script>
|
||||
<script src="//cdn.bootcss.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" style="margin-top:9%;">
|
||||
<div class="jumbotron">
|
||||
<div class="panel panel-success">
|
||||
<div class="panel-heading"><h1>Congratulations, the site was created successfully!</h1></div>
|
||||
</div>
|
||||
<p><h3>The site was created successfully and this page is automatically generated by the system.</h3></p>
|
||||
<p><li>This page is index.html in the FTP root directory.</li></p>
|
||||
<p><li>You can delete or overwrite this page</li></p>
|
||||
<p><li>For FTP related information, please check the background of the pagoda.</li></p>
|
||||
<p><li>We provide you with a comprehensive data backup function, please go to the background to set up</li></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,39 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Site not found</title>
|
||||
<style>
|
||||
*{margin:0;padding:0;color:#444}
|
||||
body{font-size:14px;font-family:"宋体"}
|
||||
.main{width:600px;margin:10% auto;}
|
||||
.title{background: #20a53a;color: #fff;font-size: 16px;height: 40px;line-height: 40px;padding-left: 20px;}
|
||||
.content{background-color:#f3f7f9; height:300px;border:1px dashed #c6d9b6;padding:20px}
|
||||
.t1{border-bottom: 1px dashed #c6d9b6;color: #ff4000;font-weight: bold; margin: 0 0 20px; padding-bottom: 18px;}
|
||||
.t2{margin-bottom:8px; font-weight:bold}
|
||||
ol{margin:0 0 20px 22px;padding:0;}
|
||||
ol li{line-height:30px}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main">
|
||||
<div class="title">Site not found</div>
|
||||
<div class="content">
|
||||
<p class="t1">Your request did not find this site in the web server!</p>
|
||||
<p class="t2">Probable cause: </p>
|
||||
<ol>
|
||||
<li>Did not bind this domain name or IP to this site!</li>
|
||||
<li>Configuration file not in effect!</li>
|
||||
</ol>
|
||||
<p class="t2">How to solve: </p>
|
||||
<ol>
|
||||
<li>Check whether already bound to the site, if true, try reloading the Web services.</li>
|
||||
<li>Check if the port is correct.</li>
|
||||
<li>If you are using a CDN product, try clearing the CDN cache.</li>
|
||||
<li>For ordinary website visitors, please contact the webadmin.</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
[
|
||||
{
|
||||
"name": "nginx",
|
||||
"title": "Nginx",
|
||||
"sort": 1,
|
||||
"status": false
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,57 @@
|
||||
[{
|
||||
"name":"七牛云存储",
|
||||
"type":"计划任务",
|
||||
"ps":"将网站或数据库打包备份到七牛对象存储空间,七牛提供10GB免费存储空间, <a class='link' href='https://portal.qiniu.com/signup?code=3liz7nbopjd5e' target='_blank'>点击申请</a>",
|
||||
"status":false,
|
||||
"opt":"qiniu",
|
||||
"module":"qiniu",
|
||||
"script":"qiniu",
|
||||
"help":"http://www.bt.cn/bbs/thread-839-1-1.html",
|
||||
"key":"access_key|请输入AccessKey|七牛秘钥中的AK",
|
||||
"secret":"secret_key|请输入SecretKey|七牛秘钥中的SK",
|
||||
"bucket":"存储空间|请输入对象存储空间名称|七牛对象存储中您创建的空间名称",
|
||||
"domain":"外链域名|请输入绑定域名或测试域名|绑定的七牛外链域名,若没有则填测试域名",
|
||||
"check":["/usr/lib/python2.6/site-packages/qiniu/auth.py","/usr/lib/python2.7/site-packages/qiniu/auth.py"]
|
||||
},{
|
||||
"name":"阿里云OSS",
|
||||
"type":"计划任务",
|
||||
"ps":"将网站或数据库打包备份到阿里云OSS对象存储空间,阿里云OSS提供5GB免费存储空间, <a class='link' href='https://www.aliyun.com/product/oss?spm=5176.8142029.388261.46.psCRgl' target='_blank'>点击申请</a>",
|
||||
"status":false,
|
||||
"opt":"alioss",
|
||||
"module":"oss2",
|
||||
"script":"alioss",
|
||||
"help":"http://www.bt.cn/bbs/thread-1061-1-1.html",
|
||||
"key":"AccessKeyId|请输入AccessKeyId|阿里云的AccessKeyId",
|
||||
"secret":"AccessKeySecret|请输入AccessKeySecret|阿里云的AccessKeySecret",
|
||||
"bucket":"Bucket|请输入Bucket名称|阿里云OSS中您创建的Bucket名称",
|
||||
"domain":"外链域名|请输入Endpoint域名|阿里云OSS外链域名,不包括Bucket名",
|
||||
"check":["/usr/lib/python2.6/site-packages/oss2/auth.py","/usr/lib/python2.7/site-packages/oss2/auth.py"]
|
||||
},{
|
||||
"name":"FTP storage",
|
||||
"type":"Cron job",
|
||||
"ps":"将网站或数据库打包备份到FTP存储空间.",
|
||||
"status":false,
|
||||
"opt":"ftp",
|
||||
"module":"ftp",
|
||||
"script":"ftp",
|
||||
"help":"http://www.bt.cn/bbs",
|
||||
"key":"Host|请输入主机地址|FTP服务器地址,例:192.168.0.1:21",
|
||||
"secret":"用户名|请输入登陆用户名|指定FTP用户名",
|
||||
"bucket":"密码|请输入登陆密码|指定FTP密码",
|
||||
"domain":"存储位置|请输入存储位置|相对于FTP根目录的路径,如 /backup",
|
||||
"check":["/www/server/panel/script/backup_ftp.py"]
|
||||
},{
|
||||
"name":"申请内测资格",
|
||||
"type":"其它",
|
||||
"ps":"申请内测资格,审核完成后将会获得内测版本更新推送,并可在宝塔论坛内测专用版块参与讨论",
|
||||
"status":false,
|
||||
"opt":"beta",
|
||||
"module":"beta",
|
||||
"script":"beta",
|
||||
"help":"http://www.bt.cn/bbs/thread-1392-1-1.html",
|
||||
"key":"",
|
||||
"secret":"",
|
||||
"bucket":"",
|
||||
"domain":"",
|
||||
"check":["data/beta.pl"]
|
||||
}]
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,26 @@
|
||||
[
|
||||
{
|
||||
"protocol": "http://",
|
||||
"address": "103.224.251.67",
|
||||
"port": "80",
|
||||
"ping": 500
|
||||
},
|
||||
{
|
||||
"protocol": "http://",
|
||||
"address": "119.188.210.21",
|
||||
"port": "5880",
|
||||
"ping": 500
|
||||
},
|
||||
{
|
||||
"protocol": "http://",
|
||||
"address": "45.32.116.160",
|
||||
"port": "80",
|
||||
"ping": 500
|
||||
},
|
||||
{
|
||||
"protocol": "http://",
|
||||
"address": "128.1.164.196",
|
||||
"port": "80",
|
||||
"ping": 500
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,267 @@
|
||||
[{
|
||||
"shell": "zend_guard_loader.sh",
|
||||
"name": "ZendGuardLoader",
|
||||
"versions": ["53", "54", "55", "56"],
|
||||
"msg": "Used to decrypt ZendGuard encryption scripts!",
|
||||
"type": "script decryption",
|
||||
"check": "ZendGuardLoader.so"
|
||||
}, {
|
||||
"shell": "zend_optimizer.sh",
|
||||
"name": "ZendOptimizer",
|
||||
"versions": ["52"],
|
||||
"msg": "Used to decrypt the ZendOptimizer encryption script!",
|
||||
"type": "script decryption",
|
||||
"check": "ZendOptimizer.so"
|
||||
}, {
|
||||
"shell": "ioncube.sh",
|
||||
"name": "ionCube",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "Used to decrypt the ionCube Encoder encryption script!",
|
||||
"type": "script decryption",
|
||||
"check": "ioncube_loader_lin"
|
||||
}, {
|
||||
"shell": "fileinfo.sh",
|
||||
"name": "fileinfo",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "Used to get file MIME, encoding, etc!!",
|
||||
"type": "general extension",
|
||||
"check": "fileinfo.so"
|
||||
}, {
|
||||
"shell": "opcache.sh",
|
||||
"name": "opcache",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "for speeding up PHP scripts!",
|
||||
"type": "buffer",
|
||||
"check": "opcache.so"
|
||||
}, {
|
||||
"shell": "xcache.sh",
|
||||
"name": "xcache",
|
||||
"versions": ["52", "53", "54", "55", "56"],
|
||||
"msg": "Support script cache and variable cache!",
|
||||
"type": "buffer",
|
||||
"check": "xcache.so"
|
||||
}, {
|
||||
"shell": "memcache.sh",
|
||||
"name": "memcache",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72"],
|
||||
"msg": "Powerful Content Cache",
|
||||
"type": "buffer",
|
||||
"check": "memcache.so"
|
||||
}, {
|
||||
"shell": "memcached.sh",
|
||||
"name": "memcached",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "More advanced features than memcache support",
|
||||
"type": "buffer",
|
||||
"check": "memcached.so"
|
||||
}, {
|
||||
"shell": "redis.sh",
|
||||
"name": "redis",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "Key-Value database based on memory can also be persisted",
|
||||
"type": "buffer",
|
||||
"check": "redis.so"
|
||||
}, {
|
||||
"shell": "apc.sh",
|
||||
"name": "apc",
|
||||
"versions": ["53", "54"],
|
||||
"msg": "script buffer",
|
||||
"type": "buffer",
|
||||
"check": "apc.so"
|
||||
}, {
|
||||
"shell": "apcu.sh",
|
||||
"name": "apcu",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "script buffer",
|
||||
"type": "buffer",
|
||||
"check": "apcu.so"
|
||||
}, {
|
||||
"shell": "imagemagick.sh",
|
||||
"name": "imagemagick",
|
||||
"versions": ["54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "Imagick High Performance Graphics Library",
|
||||
"type": "general extension",
|
||||
"check": "imagick.so"
|
||||
}, {
|
||||
"shell": "xdebug.sh",
|
||||
"name": "xdebug",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "Not much to say, don't know if you don't know",
|
||||
"type": "debugger",
|
||||
"check": "xdebug.so"
|
||||
}, {
|
||||
"shell": "imap.sh",
|
||||
"name": "imap",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "Mail server mandatory",
|
||||
"type": "mail service",
|
||||
"check": "imap.so"
|
||||
}, {
|
||||
"shell": "exif.sh",
|
||||
"name": "exif",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "for reading picture EXIF information",
|
||||
"type": "general extension",
|
||||
"check": "exif.so"
|
||||
}, {
|
||||
"shell": "intl.sh",
|
||||
"name": "intl",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "Provide international support",
|
||||
"type": "general extension",
|
||||
"check": "intl.so"
|
||||
}, {
|
||||
"shell": "xsl.sh",
|
||||
"name": "xsl",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "xsl parsing extension",
|
||||
"type": "general extension",
|
||||
"check": "xsl.so"
|
||||
}, {
|
||||
"shell": "swoole.sh",
|
||||
"name": "Swoole",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72"],
|
||||
"msg": "Asynchronous, Parallel, High Performance Network Communication Engine",
|
||||
"type": "general extension",
|
||||
"check": "swoole.so"
|
||||
}, {
|
||||
"shell": "swoole4.sh",
|
||||
"name": "Swoole4",
|
||||
"versions": ["70", "71", "72", "73"],
|
||||
"msg": "swoole4.x version",
|
||||
"type": "general extension",
|
||||
"check": "swoole.so"
|
||||
}, {
|
||||
"shell": "eaccelerator.sh",
|
||||
"name": "eAccelerator",
|
||||
"versions": ["52", "53", "54"],
|
||||
"msg": "content buffer",
|
||||
"type": "buffer",
|
||||
"check": "eaccelerator.so"
|
||||
}, {
|
||||
"shell": "yaf.sh",
|
||||
"name": "yaf",
|
||||
"versions": ["54", "55", "56", "70", "71", "72"],
|
||||
"msg": "Yaf is a PHP framework written in C",
|
||||
"type": "framework",
|
||||
"check": "yaf.so"
|
||||
}, {
|
||||
"shell": "phalcon.sh",
|
||||
"name": "phalcon",
|
||||
"versions": ["55", "56", "70", "71", "72"],
|
||||
"msg": "phalcon is a PHP framework written in C",
|
||||
"type": "framework",
|
||||
"check": "phalcon.so"
|
||||
}, {
|
||||
"shell": "mongo.sh",
|
||||
"name": "mongo",
|
||||
"versions": ["53", "54", "55", "56"],
|
||||
"msg": "Mongodb database connection driver",
|
||||
"type": "general extension",
|
||||
"check": "mongo.so"
|
||||
}, {
|
||||
"shell": "yac.sh",
|
||||
"name": "yac",
|
||||
"versions": ["70", "71", "72"],
|
||||
"msg": "High-performance lock-free shared memory Cache",
|
||||
"type": "buffer",
|
||||
"check": "yac.so"
|
||||
}, {
|
||||
"shell": "sg11.sh",
|
||||
"name": "sg11",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72"],
|
||||
"msg": "php code obfuscated encryption",
|
||||
"type": "script encryption",
|
||||
"check": "ixed.lin"
|
||||
}, {
|
||||
"shell": "pgsql.sh",
|
||||
"name": "pgsql",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension (requires postgresql to be installed in advance)",
|
||||
"type": "general extension",
|
||||
"check": "pgsql.so"
|
||||
}, {
|
||||
"shell": "pdo_pgsql.sh",
|
||||
"name": "pdo_pgsql",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension (requires postgresql to be installed in advance)",
|
||||
"type": "general extension",
|
||||
"check": "pdo_pgsql.so"
|
||||
}, {
|
||||
"shell": "readline.sh",
|
||||
"name": "readline",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "readline.so"
|
||||
}, {
|
||||
"shell": "snmp.sh",
|
||||
"name": "snmp",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "snmp.so"
|
||||
}, {
|
||||
"shell": "recode.sh",
|
||||
"name": "recode",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "recode.so"
|
||||
}, {
|
||||
"shell": "enchant.sh",
|
||||
"name": "enchant",
|
||||
"versions": ["53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "enchant.so"
|
||||
}, {
|
||||
"shell": "pspell.sh",
|
||||
"name": "pspell",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "pspell.so"
|
||||
}, {
|
||||
"shell": "bz2.sh",
|
||||
"name": "bz2",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "bz2.so"
|
||||
}, {
|
||||
"shell": "sysvshm.sh",
|
||||
"name": "sysvshm",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "sysvshm.so"
|
||||
}, {
|
||||
"shell": "calendar.sh",
|
||||
"name": "calendar",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "calendar.so"
|
||||
}, {
|
||||
"shell": "gmp.sh",
|
||||
"name": "gmp",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "gmp.so"
|
||||
}, {
|
||||
"shell": "wddx.sh",
|
||||
"name": "wddx",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "wddx.so"
|
||||
}, {
|
||||
"shell": "sysvmsg.sh",
|
||||
"name": "sysvmsg",
|
||||
"versions": ["52", "53", "54", "55", "56", "70", "71", "72", "73"],
|
||||
"msg": "php official extension",
|
||||
"type": "general extension",
|
||||
"check": "sysvmsg.so"
|
||||
}]
|
||||
@@ -0,0 +1,22 @@
|
||||
[
|
||||
{"name":"ZendGuardLoader","versions":["53","54","55","56"],"type":"Script Decoder","msg":"Using for decoding ZendGuard encrypted script!","shell":"zend_guard_loader.sh","check":"ZendGuardLoader.so"},
|
||||
{"name":"ZendOptimizer","versions":["52"],"type":"Script Decoder","msg":"Using for decoding ZendOptimizer encrypted script!","shell":"zend_optimizer.sh","check":"ZendOptimizer.so"},
|
||||
{"name":"ionCube","versions":["52","53","54","55","56","70"],"type":"Script Decoder","msg":"Using for decoding ionCube Encoder encrypted script!","shell":"ioncube.sh","check":"ioncube_loader_lin"},
|
||||
{"name":"fileinfo","versions":["53","54","55","56","70","71"],"type":"General Extension","msg":"Using for obtaining information about MIME document and encoding document!","shell":"fileinfo.sh","check":"fileinfo.so"},
|
||||
{"name":"opcache","versions":["53","54","55","56","70","71"],"type":"Buffer","msg":"Using to speed up PHP script!","shell":"opcache.sh","check":"opcache.so"},
|
||||
{"name":"xcache","versions":["52","53","54","55","56"],"type":"Buffer","msg":"Supporting script cache and variable cache!","shell":"xcache.sh","check":"xcache.so"},
|
||||
{"name":"memcache","versions":["52","53","54","55","56","70","71"],"type":"Buffer","msg":"Strong content buffer, do not support cluster","shell":"memcache.sh","check":"memcache.so"},
|
||||
{"name":"memcached","versions":["53","54","55","56","70","71"],"type":"Buffer","msg":"Strong content buffer, support cluster","shell":"memcached.sh","check":"memcached.so"},
|
||||
{"name":"redis","versions":["53","54","55","56","70","71"],"type":"Buffer","msg":"Strong content buffer, support cluster","shell":"redis.sh","check":"redis.so"},
|
||||
{"name":"apc","versions":["53","54"],"type":"Buffer","msg":"Script Buffer","shell":"apc.sh","check":"apc.so"},
|
||||
{"name":"imagemagick","versions":["54","55","56","70","71"],"type":"General Extension","msg":"This library of image is stronger than GD","shell":"imagemagick.sh","check":"imagick.so"},
|
||||
{"name":"xdebug","versions":["53","54","55","56","70","71"],"type":"Debugger","msg":"For Developer uses for debugging","shell":"xdebug.sh","check":"xdebug.so"},
|
||||
{"name":"imap","versions":["53","54","55","56","70","71"],"type":"Email Service","msg":"Important part of email server","shell":"imap.sh","check":"imap.so"},
|
||||
{"name":"exif","versions":["53","54","55","56","70","71"],"type":"General Extension","msg":"Using for reading EXIF information","shell":"exif.sh","check":"exif.so"},
|
||||
{"name":"intl","versions":["53","54","55","56","70","71"],"type":"General Extension","msg":"Providing international support","shell":"intl.sh","check":"intl.so"},
|
||||
{"name":"xsl","versions":["53","54","55","56","70","71"],"type":"General Extension","msg":"xsl parser extension","shell":"xsl.sh","check":"xsl.so"},
|
||||
{"name":"Swoole","versions":["53","54","55","56","70","71"],"type":"General Extension","msg":"asynchronous, parallel, high performance network communications engine","shell":"swoole.sh","check":"swoole.so"},
|
||||
{"name":"eAccelerator","versions":["52","53","54"],"type":"Buffer","msg":"Content buffer","shell":"eaccelerator.sh","check":"eaccelerator.so"},
|
||||
{"name":"yaf","versions":["54","55","56","70","71"],"type":"Framework","msg":"Yaf is a encoding by C language framwork for PHP","shell":"yaf.sh","check":"yaf.so"},
|
||||
{"name":"mongo","versions":["53","54","55","56"],"type":"General Extension","msg":" Driver of Mongodb database access","shell":"mongo.sh","check":"mongo.so"}
|
||||
]
|
||||
@@ -0,0 +1 @@
|
||||
8888
|
||||
@@ -0,0 +1 @@
|
||||
True
|
||||
@@ -0,0 +1,7 @@
|
||||
[{"name":"Nginx","versions":[{"status":false,"version":"1.15"},{"status":false,"version":"1.14"},{"status":false,"version":"1.12"},{"status":false,"version":"1.8"},{"status":false,"version":"-Tengine2.2"},{"status":false,"version":"openresty"}],"type":"Web服务器","msg":"Nginx是一款轻量级的Web服务器!","shell":"nginx.sh","check":"server/nginx/sbin/nginx"},
|
||||
{"name":"Apache","versions":[{"status":false,"version":"2.4"},{"status":false,"version":"2.2"}],"type":"Web服务器","msg":"Apache是世界使用排名第一的Web服务器软件。","shell":"httpd.sh","check":"server/apache/bin/httpd"},
|
||||
{"name":"MySQL","versions":[{"status":false,"version":"5.1"},{"status":false,"version":"5.5"},{"status":false,"version":"5.6"},{"status":false,"version":"5.7"},{"status":false,"version":"AliSQL"},{"status":false,"version":"mariadb_10.0"},{"status":false,"version":"mariadb_10.1"}],"type":"数据库","msg":"推荐安装!","shell":"mysql.sh","check":"server/mysql/bin/mysql"},
|
||||
{"name":"Pure-Ftpd","versions":[{"status":false,"version":"1.0.47"}],"type":"FTP服务器","msg":"PureFTPd是一款专注于程序健壮和软件安全的免费FTP服务器软件","shell":"pure-ftpd.sh","check":"server/pure-ftpd/bin/pure-pw"},
|
||||
{"name":"PHP","versions":[{"status":false,"version":"5.2"},{"status":false,"version":"5.3"},{"status":false,"version":"5.4"},{"status":false,"version":"5.5"},{"status":false,"version":"5.6"},{"status":false,"version":"7.0"},{"status":false,"version":"7.1"},{"status":false,"version":"7.2"}],"type":"语言解释器","msg":"若非必要,请安装更新的版本!","shell":"php.sh","check":"server/php/VERSION/bin/php"},
|
||||
{"name":"Tomcat","versions":[{"status":false,"version":"7"},{"status":false,"version":"8"},{"status":false,"version":"9"}],"type":"语言解释器","msg":"java-ee解释器","shell":"tomcat.sh","check":"server/tomcat/bin/catalina.sh"},
|
||||
{"name":"phpMyAdmin","versions":[{"status":false,"version":"4.0"},{"status":false,"version":"4.4"},{"status":false,"version":"4.7"}],"type":"数据库工具","msg":"Web端MySQL管理工具","shell":"phpmyadmin.sh","check":"server/phpmyadmin/version.pl"}]
|
||||
Binary file not shown.
@@ -0,0 +1,28 @@
|
||||
CREATE TABLE IF NOT EXISTS `network` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`up` INTEGER,
|
||||
`down` INTEGER,
|
||||
`total_up` INTEGER,
|
||||
`total_down` INTEGER,
|
||||
`down_packets` INTEGER,
|
||||
`up_packets` INTEGER,
|
||||
`addtime` INTEGER
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `cpuio` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`pro` INTEGER,
|
||||
`mem` INTEGER,
|
||||
`addtime` INTEGER
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `diskio` (
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
`read_count` INTEGER,
|
||||
`write_count` INTEGER,
|
||||
`read_bytes` INTEGER,
|
||||
`write_bytes` INTEGER,
|
||||
`read_time` INTEGER,
|
||||
`write_time` INTEGER,
|
||||
`addtime` INTEGER
|
||||
);
|
||||
@@ -0,0 +1 @@
|
||||
default
|
||||
@@ -0,0 +1 @@
|
||||
[{"title": "\u5168\u90e8", "type": 0, "ps": ""}, {"title": "\u8fd0\u884c\u73af\u5883", "type": 1, "ps": ""}, {"title": "\u7cfb\u7edf\u5de5\u5177", "type": 2, "ps": ""}, {"title": "\u5b9d\u5854\u63d2\u4ef6", "type": 3, "ps": ""}, {"title": "\u4ed8\u8d39\u63d2\u4ef6", "type": 4, "ps": ""}]
|
||||
@@ -0,0 +1 @@
|
||||
{"icon": {}, "data": []}
|
||||
Reference in New Issue
Block a user