├── README.md ├── kw music.json └── 小猿搜题VIP.json /README.md: -------------------------------------------------------------------------------- 1 | # rule-for-HTTP-Catcher 2 | 3 | 4 | -------------------------------------------------------------------------------- /kw music.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules" : [ 3 | { 4 | "action" : "body", 5 | "matchField" : "", 6 | "field" : "", 7 | "value" : "vipmExpire\":\"2345678900000\"", 8 | "matchValue" : "vipmExpire\":\".*?\"", 9 | "destiontion" : "response", 10 | "isRegex" : true 11 | }, 12 | { 13 | "action" : "body", 14 | "matchField" : "", 15 | "field" : "", 16 | "value" : "\"vipLuxuryExpire\":\"2580234603200\"\n", 17 | "matchValue" : "\"vipLuxuryExpire\":\".*?\"", 18 | "destiontion" : "response", 19 | "isRegex" : true 20 | }, 21 | { 22 | "action" : "body", 23 | "matchField" : "", 24 | "field" : "", 25 | "value" : "\"vipExpire\":\"2580234603200\"", 26 | "matchValue" : "\"vipExpire\":\".*?\"", 27 | "destiontion" : "response", 28 | "isRegex" : true 29 | } 30 | ], 31 | "enabled" : false, 32 | "name" : "酷我解锁", 33 | "description" : "阿甘科技", 34 | "locations" : [ 35 | { 36 | "method" : "GET", 37 | "scheme" : "http", 38 | "enabled" : true, 39 | "port" : 80, 40 | "query" : "", 41 | "host" : "vip1.kuwo.cn", 42 | "path" : "\/vip\/v2\/user\/vip" 43 | } 44 | ] 45 | } 46 | -------------------------------------------------------------------------------- /小猿搜题VIP.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules" : [ 3 | { 4 | "action" : "body", 5 | "matchField" : "", 6 | "field" : "", 7 | "value" : "\"vip\":true", 8 | "matchValue" : "\"vip\":\\w+", 9 | "destiontion" : "response", 10 | "isRegex" : true 11 | }, 12 | { 13 | "action" : "body", 14 | "matchField" : "", 15 | "field" : "", 16 | "value" : "\"expireTime\":9999999999999", 17 | "matchValue" : "\"expireTime\":\\d+", 18 | "destiontion" : "response", 19 | "isRegex" : true 20 | }, 21 | { 22 | "action" : "body", 23 | "matchField" : "", 24 | "field" : "", 25 | "value" : "\"ME\":\"已开通\"", 26 | "matchValue" : "\"ME\":\".*?\"", 27 | "destiontion" : "response", 28 | "isRegex" : true 29 | }, 30 | { 31 | "action" : "body", 32 | "matchField" : "", 33 | "field" : "", 34 | "value" : "\"VIP_CARD\":\"已开通\"", 35 | "matchValue" : "\"VIP_CARD\":\".*?\"", 36 | "destiontion" : "response", 37 | "isRegex" : true 38 | }, 39 | { 40 | "action" : "body", 41 | "matchField" : "", 42 | "field" : "", 43 | "value" : "\"payUser\":true", 44 | "matchValue" : "\"payUser\":\\w+", 45 | "destiontion" : "response", 46 | "isRegex" : true 47 | }, 48 | { 49 | "action" : "body", 50 | "matchField" : "", 51 | "field" : "", 52 | "value" : "\"name\":\"阿甘科技\"", 53 | "matchValue" : "\"name\":\".*?\"", 54 | "destiontion" : "response", 55 | "isRegex" : true 56 | } 57 | ], 58 | "enabled" : false, 59 | "name" : "小猿搜题VIP", 60 | "description" : "阿甘科技", 61 | "locations" : [ 62 | { 63 | "method" : "GET", 64 | "scheme" : "https", 65 | "enabled" : true, 66 | "port" : 443, 67 | "query" : "", 68 | "host" : "xyst.yuanfudao.com", 69 | "path" : "\/solar-vip\/iphone\/users\/555796595" 70 | }, 71 | { 72 | "method" : "GET", 73 | "scheme" : "https", 74 | "enabled" : true, 75 | "port" : 443, 76 | "query" : "", 77 | "host" : "www.yuanfudao.com", 78 | "path" : "\/tutor-student-app\/iphone\/app-configs\/user-property-default-config" 79 | }, 80 | { 81 | "method" : "GET", 82 | "scheme" : "https", 83 | "enabled" : true, 84 | "port" : 443, 85 | "query" : "", 86 | "host" : "xyst.yuanfudao.com", 87 | "path" : "\/solar-vip\/api\/users\/self" 88 | } 89 | ] 90 | } 91 | --------------------------------------------------------------------------------