声明:
本文章中所有内容仅供学习交流使用,不用于其他任何目的,抓包内容、敏感网址、数据接口等均已做脱敏处理,严禁用于商业用途和非法用途,否则由此产生的一切后果均与作者无关!
有相关问题请第一时间头像私信联系我删除博客!
前言
这几天一直没空,这个每天拿1点时候东拼西凑弄出来的补环境框架是打算用来面试凑简历的+一个java项目刚好。这个补环境框架目前不打算继续搞了太浪费时间,套的零点大佬框架的壳完成了阿里系列的环境检测部分。location的检测没搞完,暂时写死了+第三方库维持测过了很多次基本确定是location导致成功率问题。没有想到解决办法不过过阿里系列还是没问题的。动态指纹切换也完成,随机canvas等等,音频补了227部分,适配部分没搞,字体检测和css也只拿了阿里的样式,配合多个浏览器形成多套字体。这里的动态指纹借鉴了不不挽风b站cynode直接趴下来改改就可以用。总之这个框架是个大杂烩把每个开源框架核心部分copy出来requrie导入使用。全部变量维护和方法重写hook日志处理抄的boda的。非227,228,bx_et检测没有管。
bx_et分析
部分日志部分
window_self_get res->window
window_document_get -> HTMLDocument { location: [Getter/Setter] }
window_navigator_get -> Navigator {}
Navigator_userAgent_get res-> Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.0.0 Safari/537.36
window_localStorage_get ->res -> Storage {}
'[Storage_setItem]正在执行,错误信息Cannot read properties of undefined (reading 'call')'
window_localStorage_get ->res -> Storage {}
Storage_getItem key->_asduy item->null
window_document_get -> HTMLDocument { location: [Getter/Setter] }
window_navigator_get -> Navigator {}
Navigator_platform_get res-> Win32
window_document_get -> HTMLDocument { location: [Getter/Setter] }
Document_cookie_get cookie ->
window_localStorage_get ->res -> Storage {}
window_navigator_get -> Navigator {}
window_navigator_get -> Navigator {}
Navigator_platform_get res-> Win32
window_navigator_get -> Navigator {}
Navigator_webdriver_get -> false
window_document_get -> HTMLDocument { location: [Getter/Setter] }
window_screen_get -> Screen {}
Screen_height_get 480
window_screen_get -> Screen {}
Screen_width_get 640
window_outerHeight_get outerHeight ->450
window_outerWidth_get outerWidth ->634
照着日志补
window=globalThis
top=self=window
navigator.userAgent=""
navigator.platform=Win32
navigator.webdriver=false
document={}
screen={}
screen.height=480
screen.width=640
window.outerHeight=450
window.outerWidth=634
剩下的就一直补下就可以拿到最终结果