Advertisement
stuppid_bot

Untitled

Nov 1st, 2013
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. _ = XMLHttpRequest.prototype.open;
  2. XMLHttpRequest.prototype.open = function () { this._method = arguments[0]; this._uri = arguments[1]; _.apply(this, arguments); }
  3. _ = XMLHttpRequest.prototype.send;
  4. XMLHttpRequest.prototype.send = function (data) { console.log(data); _.call(this, data); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement