Fixed two small typos

git-svn-id: https://beef.googlecode.com/svn/trunk@1242 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
bcoles@gmail.com
2011-08-30 09:10:59 +00:00
parent b119f8614c
commit 39f2303e86
2 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ ZombieTab_Commands = function(zombie) {
var welcomeWindow = new Ext.Window({
title: 'Welcome to the BeEF Command Modules',
id: 'welcome-window',
id: 'welcome-window',
closable:true,
width:450,
height:300,
@@ -43,7 +43,7 @@ ZombieTab_Commands = function(zombie) {
html: "At your left you have all the BeEF command modules organized in a category tree.<br/><br/> " +
"Most command modules consist of Javascript code that is executed against the selected " +
"Hooked Browser. Command modules are able to perform any actions that can be achieved " +
"trough Javascript: for example they may gather information about the Hooked Browser, manipulate the DOM " +
"through Javascript: for example they may gather information about the Hooked Browser, manipulate the DOM " +
"or perform other activities such as exploiting vulnerabilities within the local network " +
"of the Hooked Browser.<br/><br/>To learn more about writing your own modules please review " +
"the wiki:<br /><a href='https://code.google.com/p/beef/wiki/CommandModuleAPI'>" +

View File

@@ -17,7 +17,7 @@ beef:
module:
browser_fingerprinting:
enable: true
category: "Browser"
category: "Recon"
name: "Browser Fingerprinting"
description: "This module attempts to fingerprint the browser type and version using URI handlers unique to Internet Explorer and Mozilla Firefox. This method does not rely on JavaScript objects which may have been modified by the user or browser compatibility mode."
authors: ["bcoles"]