"X-UA-Compatible: IE=9" header was sent

Your User-Agent String

Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)


About the User-Agent String

The User-Agent (or UA) string is sent along in the headers of every HTTP request so the server knows what type of browser is making the request. For a quick refresher on the User-Agent string, check out George Shephard's article in MSDN Magazine. Two MSDN articles describe User-Agent headers: Understanding User-Agent Strings, and Best Practices for detecting the Internet Explorer version.

Want Internet Explorer to simulate another version? 

IE8 users: Check out the free User-Agent Picker add-on, which enables changing your UA string without restarting the browser.

Otherwise, run one of the following scripts and restart all browser instances to see the change:


Your browser sent the following headers:
Cache-Control: no-cache
Pragma: no-cache
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
Accept-Encoding: gzip, br
Host: webdbg.com
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
x-forwarded-for: 3.134.109.116
sec-fetch-mode: navigate
sec-fetch-user: ?1
priority: u=0, i
cf-ray: 936af7eeba9ede7e-ORD
sec-fetch-dest: document
sec-ch-ua: "HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: "Windows"
upgrade-insecure-requests: 1
sec-fetch-site: none
x-forwarded-proto: https
cdn-loop: cloudflare; loops=1
cf-connecting-ip: 3.134.109.116
cf-ipcountry: US
cf-visitor: {"scheme":"https"}
X-Original-URL: /ua9.aspx

ASPNET's HTTPBrowserCapabilities object reports that, based on the User-Agent, your Browser has the following capabilities:
Type = Mozilla
Name = Mozilla
Version = 0.0
Major Version = 0
Minor Version = 0
Platform = Unknown
Is Beta = False
Is Crawler = False
Is AOL = False
Is Win16 = False
Is Win32 = False
Supports Frames = True
Supports Tables = True
Supports Cookies = True
Supports VBScript = False
Supports JavaScript = True
Supports Java Applets = False
Supports ActiveX Controls = False

window.navigator.userAgent: [Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)]
window.navigator.appMinorVersion: [undefined]

Document mode  clientCaps Info

The following script commands will generate a text file containing all UA-override registry settings.
reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent" /s > Reg.txt
reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent" /s >> Reg.txt
reg query "HKLM\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent" /s >> Reg.txt
reg query "HKCU\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent" >> Reg.txt
reg query "HKLM\Software\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent" /s >> Reg.txt
reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\CurrentVersion\Internet Settings\User Agent" >> Reg.txt



©2003-2010 Microsoft Corporation