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

11 lines
239 B
JavaScript
Raw Normal View History

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