-
Notifications
You must be signed in to change notification settings - Fork 94
/
LingDuPortraitProCrack.js
133 lines (104 loc) · 3.08 KB
/
LingDuPortraitProCrack.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
*
*
脚本功能:绅士摄影解锁会员
软件版本:3.0
下载地址:http://t.cn/A6JhXCBH
脚本作者:Hausd0rff
更新时间:2021.12.31
电报频道:https://t.me/yqc_123
问题反馈:https://t.me/yqc_007
使用声明:⚠️此脚本仅供学习与交流,
请勿转载与贩卖!⚠️⚠️⚠️
*******************************
[rewrite_local]
# > 绅士摄影解锁会员
^https?:\/\/appa\.lingdu2019\.cn\/api\/(my_home\/\w{9}|portrait\/\w{15,23}|iport/luffy/api/\w{7}/\w{9}|send\/\w{18})$ url script-response-body https://raw.githubusercontent.com/yqc007/QuantumultX/master/LingDuPortraitProCrack.js
[mitm]
hostname = appa.lingdu2019.cn
*
*
*/
var body = $response.body;
var urlq = $request.url;
var objc = JSON.parse(body);
const hmvc = '/my_home/check_vip';
const user = '/my_home/my_detail';
const hlma = '/luffy/api/my_home';
const dlsc = '/check_login_status';
const xzvk = '/portrait/video_detail';
const xzge = '/portrait/new_goods_detail';
const xzhd = '/portrait/new_goods_middle';
// Check Vip Status
if (urlq.indexOf(hmvc) != -1) {
objc = {
"xiezhen_vip": 1,
"video_vip": 1,
"status": "20000",
"type": "success"
};
body = JSON.stringify(objc);
}
// Check User Detail
if (urlq.indexOf(user) != -1) {
objc = {
"status": "20000",
"type": "success",
"my_detail": [{
"user_id": "666666",
"nick_name": "浥轻尘𝐶𝑟𝑎𝑐𝑘",
"user_img": "image\/default\/FB9A7498351847139BB1D3A33E1ECCA5-6-2.png",
"background_img": "image\/default\/27099F8AD57A40DB95DEEFF4CB276125-6-2.png",
"phone_number": "18811900112",
"signature": "已破解🎃",
"is_vip": 1
}],
"star_fans": {
"star_count": "999",
"fans_count": "999"
}
};
body = JSON.stringify(objc);
}
// Check User Status
if (urlq.indexOf(hlma) != -1) {
objc = {
"status": "20000",
"type": "success"
};
body = JSON.stringify(objc);
}
// Check Login Status
if (urlq.indexOf(dlsc) != -1) {
objc = {
"is_login": 1,
"status": "20000",
"type": "success"
};
body = JSON.stringify(objc);
}
// Videos Play Power
if (urlq.indexOf(xzvk) != -1) {
objc["is_read"] = 1;
body = JSON.stringify(objc);
}
// Photos Download Power
if (urlq.indexOf(xzhd) != -1) {
objc["is_read"] = 1;
objc["is_down"] = 1;
body = JSON.stringify(objc);
}
// Photos Read Power & Batch Download Button
/***
The prerequisite for the batch download button to be turned on is that the status of the download permission is turned on
***/
if (urlq.indexOf(xzge) != -1) {
objc["is_read"] = 1;
objc["is_down"] = 1;
objc["is_all_down"] = 1;
body = JSON.stringify(objc);
}
$done({ body });
// If it prompts that the permissions are insufficient, please clear the cache and re-enter the application.
// This cracking script is for learning and reference only, please do not use it for any commercial purposes!
// By the way, I forgot to say the most important thing is to hope everyone "Happy New Year 🎉🎉🎉!".