mirror of
https://github.com/Giu-zhao/ios_rule_script
synced 2024-11-27 02:48:26 +08:00
24 lines
989 B
JavaScript
24 lines
989 B
JavaScript
|
/*
|
|||
|
蜜桃漫画 unlock vip
|
|||
|
|
|||
|
QX:
|
|||
|
^https?:\/\/(bd|bdapp|mitaoapp)\.(4008109966|yeduapp)\.(net|com)\/\/index\.php\/api\/User\/userLogin url script-response-body https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/File/bdmh.js
|
|||
|
|
|||
|
Surge4:
|
|||
|
http-response ^https?:\/\/(bd|bdapp|mitaoapp)\.(4008109966|yeduapp)\.(net|com)\/\/index\.php\/api\/User\/userLogin requires-body=1,max-size=0,script-path=https://raw.githubusercontent.com/NobyDa/Script/master/QuantumultX/File/bdmh.js
|
|||
|
*/
|
|||
|
|
|||
|
var body = $response.body;
|
|||
|
var obj = JSON.parse(body);
|
|||
|
|
|||
|
obj.data.user_info.isvip = "1";
|
|||
|
obj.data.user_info.is_pay = "1";
|
|||
|
obj.data.user_info.egold = "66666";
|
|||
|
obj.data.user_info.vip_days = "66666";
|
|||
|
obj.data.user_info.vip_start_time = "1502969604";
|
|||
|
obj.data.user_info.vip_overtime = "2066-06-06 06:00:00";
|
|||
|
obj.data.user_info.name = "脚本禁止牟利,TG频道@NobyDa";
|
|||
|
obj.data.user_info.avatar = "https://avatars3.githubusercontent.com/u/53217160?s=400&v=4";
|
|||
|
|
|||
|
body = JSON.stringify(obj);
|
|||
|
$done({body});
|