这款源码有一个文件有加密,其他的都是开源的,不影响二开,功能也满足日常所需,前端挺简洁美观,支持查询授权、卡密兑换授权、程序下载,更换授权等,自适应手机/电脑端文章源自奇客源码-https://www.qkget.cn/5876.html
测试环境:MySQL5.6,PHP7.0文章源自奇客源码-https://www.qkget.cn/5876.html
授权支持自定义设置到期时间文章源自奇客源码-https://www.qkget.cn/5876.html
支持盗版入库,程序没有授权被使用,会在后台自动生成一个域名访问记录文章源自奇客源码-https://www.qkget.cn/5876.html
支持卡密授权文章源自奇客源码-https://www.qkget.cn/5876.html
提供授权验证代码,可以直接插入需要授权的程序里文章源自奇客源码-https://www.qkget.cn/5876.html
目前支持卡密兑换和后台手动增加,有代理功能,独立代理后台,代理可以无限生成卡密文章源自奇客源码-https://www.qkget.cn/5876.html
前台支持自助更换授权,可批量生成,支持自定义设置到期时间文章源自奇客源码-https://www.qkget.cn/5876.html
支持代理功能文章源自奇客源码-https://www.qkget.cn/5876.html
更新记录:文章源自奇客源码-https://www.qkget.cn/5876.html
1.2.0:文章源自奇客源码-https://www.qkget.cn/5876.html
6.29更新文章源自奇客源码-https://www.qkget.cn/5876.html
1.新增盗版入库功能文章源自奇客源码-https://www.qkget.cn/5876.html
1.2.1文章源自奇客源码-https://www.qkget.cn/5876.html
7.13更新文章源自奇客源码-https://www.qkget.cn/5876.html
1.新增绑定IP功能,双重验证文章源自奇客源码-https://www.qkget.cn/5876.html
2.新增验证域名,文件下载功能文章源自奇客源码-https://www.qkget.cn/5876.html
3.优化UI文章源自奇客源码-https://www.qkget.cn/5876.html
4.修复部分已知bug文章源自奇客源码-https://www.qkget.cn/5876.html
1.2.2文章源自奇客源码-https://www.qkget.cn/5876.html
8.2更新文章源自奇客源码-https://www.qkget.cn/5876.html
1.支持IP或者域名单独授权文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
文章源自奇客源码-https://www.qkget.cn/5876.html
define('AUTH_SERVER', 'http://域名/auth_server.php');
define('AUTH_KEY', '113300');
function check_auth() {
$domain = str_replace('www.', '', $_SERVER['HTTP_HOST']);
$auth = json_decode(@file_get_contents(AUTH_SERVER.'?domain='.urlencode($domain)), true) ?: [];
return $auth['status'] === 'success'
&& hash_equals(hash_hmac('sha256', $auth['token'], AUTH_KEY), $auth['signature'])
&& ($data = json_decode(base64_decode($auth['token']), true))
&& $data['domain'] === $domain
&& $data['expires'] > time();
}
if (!check_auth()) {
http_response_code(403);
exit('<h1>授权验证失败</h1>');
}
文章源自奇客源码-https://www.qkget.cn/5876.html
暂无评论内容