The parsed browser, engine, operating system and device appear here once you paste a User-Agent string.
User-Agent 解析器读取浏览器发送的 User-Agent 请求头,并将其分解为浏览器名称和版本、渲染引擎、操作系统以及请求来自的设备类型。每个 HTTP 请求都携带这个字符串,它是服务器无需询问即可学习连接另一端内容的最常见方式。该头本身在 RFC 9110(HTTP 语义规范)中定义,其格式是历史上变得混乱的产品令牌和注释的非结构化列表。
That messiness is the reason a parser existing。a modern Chrome string still begin with "Mozilla/5.0" and still contains word "Safari", because browsers sporting each token to pass server sniffing tests。Edge carries "Chrome", Opera carries "Chrome", and Safari on a iPhone reports its real version in a separate "Version/" token rather than the "Safari/" one。reading a User-Agent by eye is therefore error-prone: the token that looks most simpled are offerly the reference in for head
该工具应用了这些怪癖所需的检测顺序。它首先测试嵌入另一个浏览器令牌的浏览器,因此 Edge 不会被误读为 Chrome,Chrome-on-iOS 字符串也不会被误读为 Safari。它将 Windows NT 内核编号映射到其营销名称,将下划线分隔的 iOS 和 macOS 版本转换回虚线形式,并将请求分类为桌面、移动设备、平板电脑或机器人。它还标记已知的爬虫和自动化签名,这是当您阅读 Web 服务器访问日志而不是调试单个浏览器时最有用的字段。
Everything都在你的浏览器中运行,你粘贴的字符串永远不会上传,这很重要,因为来自你自己的流量的真实用户代理可以暗示确切的设备,并且构建访问者正在使用,没有注册,没有速率限制,也没有网络请求,所以你可以粘贴生产日志线,而无需将它们发送到任何地方。
UA 字符串从您的访问日志、浏览器控制台(navigator。userAgent)或请求标头中掉入。或加载其中一个内置样本。
浏览器、引擎、操作系统、设备类型、CPU架构和机器人标志都会随着您的键入立即检测到。没有按钮可以按下。
查看请求是否来自桌面、手机、平板电脑或 Googlebot 等爬虫,以及字符串暴露的设备模型。
将解析的表格复制为选项卡分隔的文本,粘贴到电子表格、错误报告或日志分析笔记中。
Chrome 之前测试 Edge、Opera 和三星,并从其版本/令牌中读取 Safari,因此嵌入式兼容性令牌不会导致读错。
将 Windows NT 内核编号转换为名称,恢复虚线 iOS 和 macOS 版本,并识别 Android、Chrome 操作系统和 Linux。
将每个字符串标记为桌面、移动设备、平板电脑或机器人,并在用户代理包含 Android 或 Apple 设备模型时将其表面化。
匹配广泛的搜索引擎、社交和自动化签名,例如 Googlebot、Bingbot、curl 和无头 Chrome,用于日志分析。
Turn a username and password into an HTTP Basic Authentication header, curl command and fetch snippet, and decode existing Basic auth tokens back.
Check one name across hundreds of TLDs at once. RDAP first, WHOIS fallback, and a verdict of available, taken or unknown — never a guess
Decode JWT headers and payloads, inspect claims, and check token expiry
Create soft-UI (neumorphic) elements with a live preview and controls for distance, blur, intensity, radius, surface color, and flat/concave/convex/pressed shapes - then copy the CSS.
0 comments
No comments yet. Be the first to share your thoughts!