metasploit-framework/data/js/network/xhr_shim.js

14 lines
386 B
JavaScript
Raw Normal View History

if (!window.XMLHTTPRequest) {
2013-11-02 21:46:33 +00:00
var idx, activeObjs = ["Microsoft.XMLHTTP", "Msxml2.XMLHTTP", "Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0"];
for (idx = 0; idx < activeObjs.length; idx++) {
try {
2013-11-02 21:46:33 +00:00
new ActiveXObject(activeObjs[idx]);
window.XMLHttpRequest = function() {
2013-11-02 21:46:33 +00:00
return new ActiveXObject(activeObjs[idx]);
};
break;
}
catch (e) {}
}
}