能力值:
( LV1,RANK:0 )
|
-
-
27 楼
小白弱弱的问一下,怎么判断是加壳了?
|
能力值:
( LV8,RANK:120 )
|
-
-
28 楼
如果能花一分钱开通VIP也是ok的
|
能力值:
( LV2,RANK:10 )
|
-
-
29 楼
意料之内能写这种抢茅台的软件的作者 对逆向也有一定的修为。。。
|
能力值:
( LV2,RANK:10 )
|
-
-
30 楼
九天14
刚才看了下会员价50一年,要是能抢到一瓶茅台也赚回来了[em_78]
我不懂 抢茅台为啥能赚钱呀
|
能力值:
( LV8,RANK:120 )
|
-
-
31 楼
# 解混淆之后的关键代代码
# 按下查询按钮先进行一波淘口令的操作转换成mlink
$("#query-button").click(function () {
let _link = $("#link").val();
if (_link.indexOf('.tb.cn') > -1) {
var a = _link.split("http")[1];
a = a.split("?")[0];
a = 'http' + a;
# 调用函数发送数据到服务器
queryItem(a)
} else if (_link.indexOf('id=') > -1) {
var a = _link.split("id=")[1];
a = 'id=' + a;
queryItem(a)
} else {
weui.alert('确保口令内含有https://m.tb.cn')
}
});
# 发送请求函数,弹出“仅限高级会员使用”应该就是这里根据服务器返回的错误码弹出
function queryItem(b) {
if (w) {
w = false
} else {
return
}
n = 0;
o = [];
p = 1;
t = false;
var c = 'https://bmobapi.hb174.top/aed0843961fb06dc/tmallBP?auth=' + h + '&mlink=' + b;
if (v) {
c = 'https://cloud.bmob.cn/aed0843961fb06dc/tmallBP?auth=' + h + '&mlink=' + b
}
$.ajax({
type: "GET",
timeout: 5000,
dataType: 'jsonp',
jsonp: "callback",
jsonpCallback: 'jsonp',
url: c,
success: function (a) {
w = true;
if (a.errcode == 0) {
l = a.data;
reflashControlPad();
$("#card-step-1").hide();
$("#card-step-2").show();
$("#configPad").show();
$("#readyPad").hide()
} else {
if (a.errmsg.indexOf('解析失败') > -1) {
queryItem2(b);
w = true
} else {
weui.alert(a.errmsg)//弹出“仅限高级会员使用”
}
}
},
error: (err, type) => {
queryItem2(b);
w = true
},
})
}
|
能力值:
( LV2,RANK:10 )
|
-
-
32 楼
中间人攻击,动态修改服务器返回数据。
|
|
|