Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
firesunCN committed Jan 25, 2016
1 parent 9f62aef commit e6619de
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ define('ENCRYPT_TYPE', "RC4");
![](./guide/myjs.png)

* 用户可随时插入js模板
* 部分整合[xssor](https://github.com/evilcos/xssor)功能,方便生成payload
* 部分整合[xssor](https://github.com/evilcos/xssor)功能,方便生成payload,xssor有跟强大的功能,大家可以去follow evilcos的github

![](./guide/xssor.png)

Expand Down Expand Up @@ -113,9 +113,22 @@ define('ENCRYPT_TYPE', "RC4");
3. 执行`php change_encrypt_pass.php true bluelotus rc4 (现在是否加密) (新加密密码) (新加密方法)`
4. 升级完成

## 邮件提醒

修改config.php相关配置即可,默认关闭,开启后,每次接收到xss都会发邮件通知,需要短信提醒的直接把接收邮箱设置为手机邮箱即可

```
define('MAIL_ENABLE', false);//开启邮件通知
define('SMTP_SERVER', "smtp.xxx.com");//smtp服务器
define('SMTP_PORT', 465);//端口
define('SMTP_SECURE', "ssl");
define('MAIL_USER', "[email protected]");//发件人用户名
define('MAIL_PASS', "xxxxxx");//发件人密码
define('MAIL_FROM', "[email protected]");//发件人地址(需真实,不可伪造)
define('MAIL_RECV', "[email protected]");//接收通知的邮件地址
```

## TODO
* 邮件提醒
* 短信提醒
* 多用户(SQL版本)
* WebSocket方式通知

Expand Down

0 comments on commit e6619de

Please sign in to comment.