(Fixes issue 359) Proxy/Requester now forward back original XHR response headers (stripping some of them lik encoding and cache related). Added also a temporary fix for issue 368 (prevent saving raw image data if db = mysql).

git-svn-id: https://beef.googlecode.com/svn/trunk@1051 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
antisnatchor
2011-07-09 22:30:44 +00:00
parent c5419797c3
commit fe5b318792
6 changed files with 64 additions and 7 deletions

View File

@@ -35,7 +35,8 @@ beef.net.requester = {
function(res, requestid) { beef.net.send('/requester', requestid, {
response_data:res.response_body,
response_status_code: res.status_code,
response_status_text: res.status_text});
response_status_text: res.status_text,
response_headers: res.headers});
}
);
}