Updated description to make it more obvious & added specific DC enumeration

bug/bundler_fix
Stuart Morgan 2015-08-26 15:03:28 +01:00
parent 7cee4d0ad1
commit 59cf75c5a8
1 changed files with 4 additions and 3 deletions

View File

@ -28,8 +28,9 @@ class Console::CommandDispatcher::Extapi::Adsi
{
"adsi_user_enum" => "Enumerate all users on the specified domain.",
"adsi_group_enum" => "Enumerate all groups on the specified domain.",
"adsi_nested_group_user_enum" => "Enumerate users who are effectively members of a group, taking intermediate groups into account.",
"adsi_nested_group_user_enum" => "Recursively enumerate users who are effectively members of the group specified.",
"adsi_computer_enum" => "Enumerate all computers on the specified domain.",
"adsi_dc_enum" => "Enumerate all domain controllers on the specified domain.",
"adsi_domain_query" => "Enumerate all objects on the specified domain that match a filter."
}
end
@ -62,7 +63,7 @@ class Console::CommandDispatcher::Extapi::Adsi
end
#
# Enumerate domain users.
# Enumerate domain groups.
#
def cmd_adsi_nested_group_user_enum(*args)
args.unshift("-h") if args.length == 0
@ -129,7 +130,7 @@ class Console::CommandDispatcher::Extapi::Adsi
end
#
# Options for the adsi_user_enum command.
# Options for the adsi_group_enum command.
#
@@adsi_group_enum_opts = Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner" ],