Create config.php

This commit is contained in:
grt1st
2017-03-07 16:59:01 +08:00
committed by GitHub
parent 97f5414f29
commit 339ee66e74

23
config.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
$config = array();
$drops = array();
$config['host'] = '127.0.0.1';
$config['port'] = '3306';
$config['user'] = 'root';
$config['passwd'] = '';
$config['database'] = 'wooyun';
$drops['papers'] = '漏洞分析';
$drops['tips'] = '技术分享';
$drops['tools'] = '工具收藏';
$drops['news'] = '业界资讯';
$drops['web'] = 'web安全';
$drops['pentesting'] = '渗透案例';
$drops['mobile'] = '移动安全';
$drops['wireless'] = '无线安全';
$drops['database'] = '数据库安全';
$drops['binary'] = '二进制安全';
$drops['safe'] = '运维安全'
?>