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

16 lines
358 B
JavaScript
Raw Normal View History

2013-10-31 18:55:22 +00:00
function postInfo(path, data) {
var xmlHttp = '';
if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
else {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlHttp.overrideMimeType) {
xmlHttp.overrideMimeType("text/plain; charset=x-user-defined");
}
xmlHttp.open('POST', path, false);
xmlHttp.send(data);
}