Actionable TODOs move to the tracker. TODOs have been removed from source.
git-svn-id: https://beef.googlecode.com/svn/trunk@703 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
@@ -72,7 +72,6 @@ module BeEF
|
||||
end
|
||||
|
||||
# check if valid ip address string
|
||||
# TODO add unit tests
|
||||
def self.is_valid_ip?(ip)
|
||||
return true if ip =~ /^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})?$/
|
||||
false
|
||||
|
||||
@@ -75,7 +75,6 @@ module BeEF
|
||||
command_class = (File.basename command, '.rb').capitalize
|
||||
command_file = (File.basename command, '.rb')+'.js'
|
||||
|
||||
#TODO: implement URL obfuscation at start up.
|
||||
@http_server.mount "/command/#{command_file}", BeEF::CommandHandler, command_class
|
||||
}
|
||||
|
||||
|
||||
@@ -132,7 +132,7 @@ module Modules
|
||||
# Executes every plugins in the framework.
|
||||
#
|
||||
def execute_plugins!
|
||||
#TODO
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -71,7 +71,6 @@ class Authentication < BeEF::HttpController
|
||||
# add session cookie to response header
|
||||
@headers['Set-Cookie'] = session_cookie.to_s
|
||||
|
||||
# TODO add escape username and password submitted
|
||||
BeEF::Logger.instance.register('Authentication', "User with ip #{@request.peeraddr[3]} has successfuly authenticated in the application.")
|
||||
@body = "{ success : true }"
|
||||
end
|
||||
|
||||
@@ -48,12 +48,9 @@ class Panel < BeEF::HttpController
|
||||
|
||||
# Takes a list distributed engine rules and format the results into JSON
|
||||
def distributed_engine_rules_2_json_simple(rules)
|
||||
#TODO
|
||||
|
||||
end
|
||||
|
||||
# TODO: we have duplicate functions here (see ui/zombies/zombies.rb), maybe we need to
|
||||
# organize the code differently.
|
||||
|
||||
# Takes a list of zombies and format the results in a JSON array.
|
||||
def zombies2json_simple(zombies)
|
||||
zombies_hash = {}
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
#TODO: review when multi zombie hooks are available
|
||||
module BeEF
|
||||
module Modules
|
||||
module Commands
|
||||
|
||||
@@ -261,6 +261,5 @@ Ext.extend(zombiesTreeList, Ext.tree.TreePanel, {
|
||||
//we return if the tree is not distributed
|
||||
if(!this.tree_configuration["distributed"]) return;
|
||||
|
||||
//TODO
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user