Files
BlueLotus_XSSReceiver/config.php
firesun 264460650b Version 3.0.0
1. 完成js模板,我的js模块,可以直接添加修改用于xss的js
2. 采用ace编辑器实现js代码高亮与错误检测
3. 使用js_beautify实现js代码格式化,使用jsmin实现js代码压缩
4. 整合xss'or工具部分功能,自由编码,方便生成最终的payload
5. 增加加密方式RC4,更改默认加密方式为RC4
6. 从旧版本升级并想保留记录的请务必查看Readme里的升级步骤
7. 修复一系列bug
2016-01-24 01:07:17 +08:00

23 lines
724 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
if(!defined('IN_XSS_PLATFORM')) {
exit('Access Denied');
}
//后台登录密码默认密码bluelotus
define('PASS', '2a05218c7aa0a6dbd370985d984627b8');
//xss记录、封禁ip列表存放目录
define('DATA_PATH', 'data');
//js模板存放目录
define('JS_TEMPLATE_PATH', 'template');
//我的js存放目录
define('MY_JS_PATH', 'myjs');
//是否加密“xss记录封禁ip列表js描述”
define('ENABLE_ENCRYPT', true);
//加密密码
define('ENCRYPT_PASS', "bluelotus");
//加密方法AES或RC4
define('ENCRYPT_TYPE', "RC4");
//是否启用KEEP_SESSION功能需要外部定时访问keepsession.php
define('KEEP_SESSION', true);
//ip归属地数据库地址
define('IPDATA_PATH', "qqwry.dat");
?>