How can I spoof the user agent of a JavaScript GET request? setRequestHeader with User-Agent
isn't allowed:
xmlHttpRequest.setRequestHeader("User-Agent", "...");
How can I spoof the user agent of a JavaScript GET request? setRequestHeader with User-Agent
isn't allowed:
xmlHttpRequest.setRequestHeader("User-Agent", "...");
Share
Improve this question
edited Jul 20, 2013 at 20:51
Cole Tobin
9,42315 gold badges51 silver badges77 bronze badges
asked Aug 9, 2011 at 11:17
XP1XP1
7,1938 gold badges59 silver badges63 bronze badges
3
- I hop that this wont work you shuld not be able to tell the server that your in an other env then you are from a client. – megakorre Commented Aug 9, 2011 at 11:21
- 3 You can and you should be able to tell the server that you're in a different enviroment than you actually are - and plenty of browsers do allow you o change your User-Agent string. That beeing said I do not know of such a mechanism controllable from JavaScript. – Daniel Baulig Commented Aug 9, 2011 at 11:25
- On the client-side browser, I need to get the webpage source from a server that performs server-side browser sniffing. Any other ideas? – XP1 Commented Aug 9, 2011 at 11:35
2 Answers
Reset to default 5In short: You can't due to built-in cross-domain limitations.
One way "around" that was to write a proxy-webservice and let the server spoof whatever headers you need spoofed.
You can't do this in a half-decent browser because of security issues surrounding it. You don't want XSS scripts to be changing request headers and running rampant on your site.
However I believe there's a workaround in IE if you use VBScript:
MyHttp.setRequestHeader "User-Agent", "MyCustomUser"
The alternative is to have a web page on your site dedicated to forwarding a GET request, changing the appropriate headers as necessary.