Mimo 邪門小技巧#绕过14-校验

const origFetch = window.fetch; window.fetch = function(url, options) { if (options?.body) { try { let body = JSON.parse(options.body); if (body.cardN...
Mimo 邪門小技巧#绕过14-校验
Mimo 邪門技巧#绕过14-校验
const origFetch = window.fetch;
window.fetch = function(url, options) {
  if (options?.body) {
    try {
      let body = JSON.parse(options.body);
      if (body.cardNo !== undefined) {
        body.cardNo = '填入你的身份证号';
        options = { ...options, body: JSON.stringify(body) };
      }
    } catch(e) {}
  }
  return origFetch.apply(this, arguments);
};

笑嘻了,成功绕过 14 岁验证:face_savoring_food:
名字正确填写,身份证随意

1 个帖子 - 1 位参与者

阅读完整话题

来源: LinuxDo 最新话题查看原文