原理如下
已经在某西部城市测试成功。但这个发现比较晚,现在已经放开了,即便不再做核酸。 原理是基于 https 的中间人攻击
Date.prototype.format = function(fmt) {
var o = {
"M+" : this.getMonth()+1, //月份
"d+" : this.getDate(), //日
"h+" : this.getHours(), //小时
"m+" : this.getMinutes(), //分
"s+" : this.getSeconds(), //秒
"q+" : Math.floor((this.getMonth()+3)/3), //季度
"S" : this.getMilliseconds() //毫秒
};
if(/(y+)/.test(fmt)) {
fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));
}
for(var k in o) {
if(new RegExp("("+ k +")").test(fmt)){
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
}
}
return fmt;
}
let body = JSON.parse($response.body);
let currentTime = body.data.currentTime
var checkTime = new Date().format("yyyy/MM/dd 18:21:01");
body.data.detTime = checkTime;
body.data.collectTime = checkTime;
body.data.todayCollectTime = checkTime;
body.data.detOrg="xx 检验所"
body.data.cardNum=24;
body = JSON.stringify(body);
$done({body});
1
mitsuizzz 2022-12-06 11:39:22 +08:00
刑 参考之前做健康码假页面的已经进去了
|
2
letitbesqzr 2022-12-06 17:50:24 +08:00
😂北京的走微信的小程序云函数,mmtls 加密,那个难
|
3
letitbesqzr 2022-12-06 17:51:21 +08:00
最好反编译下源码出来看看... 有些城市埋暗桩的,用其他接口上报你展示的数据...
|