日期: 2023 年 2 月 7 日

1 篇文章

前端网络之:抓包,数据拦截,请求修改
浏览器请求拦截 对 window.XMLHttpRequest 对象的重写 拦截请求入参(通过修改send方法修改) class XMLHttpRequestInter extends window.XMLHttpRequest { constructor(){ super(...args); } send(...params){ const yo…