From f79f704a68914c7075bc1b8e3b81f5219c481765 Mon Sep 17 00:00:00 2001 From: HD Moore Date: Fri, 25 Feb 2011 21:00:33 +0000 Subject: [PATCH] Make the post module titles consist git-svn-id: file:///home/svn/framework3/trunk@11824 4d416f70-5f16-0410-b530-b9f4589650da --- modules/post/multi/gather/env.rb | 2 +- modules/post/osx/gather/enum_osx.rb | 8 ++++---- modules/post/windows/capture/keylog_recorder.rb | 6 +++--- modules/post/windows/escalate/bypassuac.rb | 2 +- modules/post/windows/escalate/service_permissions.rb | 2 +- modules/post/windows/gather/checkvm.rb | 2 +- modules/post/windows/gather/enum_applications.rb | 4 ++-- modules/post/windows/gather/enum_logged_on_users.rb | 2 +- modules/post/windows/gather/enum_powershell_env.rb | 2 +- modules/post/windows/gather/enum_shares.rb | 2 +- modules/post/windows/gather/enum_snmp.rb | 4 ++-- modules/post/windows/gather/hashdump.rb | 2 +- modules/post/windows/gather/resolve_sid.rb | 2 +- modules/post/windows/manage/delete_user.rb | 2 +- 14 files changed, 21 insertions(+), 21 deletions(-) diff --git a/modules/post/multi/gather/env.rb b/modules/post/multi/gather/env.rb index 528bb741d7..bb2525d330 100644 --- a/modules/post/multi/gather/env.rb +++ b/modules/post/multi/gather/env.rb @@ -19,7 +19,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Get environment', + 'Name' => 'Generic Operating System Environment Settings', 'Description' => %q{ Print out environment variables }, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez ', 'egypt' ], diff --git a/modules/post/osx/gather/enum_osx.rb b/modules/post/osx/gather/enum_osx.rb index b80f042dd4..eec545bf80 100644 --- a/modules/post/osx/gather/enum_osx.rb +++ b/modules/post/osx/gather/enum_osx.rb @@ -23,10 +23,10 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Mac OS X Information Enumeration', + 'Name' => 'Mac OS X System Information Enumeration', 'Description' => %q{ - This module does initial gathering of information from OSX Tiger, Leopard - and Snow Leopard System + This module gathers basic system information from Mac OS X Tiger, Leopard + and Snow Leopard systems. }, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez '], @@ -570,4 +570,4 @@ class Metasploit3 < Msf::Post end end -end \ No newline at end of file +end diff --git a/modules/post/windows/capture/keylog_recorder.rb b/modules/post/windows/capture/keylog_recorder.rb index d819167125..d03da3c3a7 100644 --- a/modules/post/windows/capture/keylog_recorder.rb +++ b/modules/post/windows/capture/keylog_recorder.rb @@ -21,8 +21,8 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Keylog Recorder', - 'Description' => %q{ Records keyloger data to a log file.}, + 'Name' => 'Microsoft Windows Keystroke Recorder', + 'Description' => %q{ Records keystroke logs to a file.}, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez '], 'Version' => '$Revision$', @@ -206,4 +206,4 @@ class Metasploit3 < Msf::Post end end -end \ No newline at end of file +end diff --git a/modules/post/windows/escalate/bypassuac.rb b/modules/post/windows/escalate/bypassuac.rb index ae85bfb4cd..29aad3d640 100644 --- a/modules/post/windows/escalate/bypassuac.rb +++ b/modules/post/windows/escalate/bypassuac.rb @@ -16,7 +16,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Windows UAC Protection Bypass', + 'Name' => 'Microsoft Windows UAC Protection Bypass', 'Description' => %q{ This module will bypass Windows UAC by utilizing the trusted publisher certificate through process injection. It will spawn a second shell that diff --git a/modules/post/windows/escalate/service_permissions.rb b/modules/post/windows/escalate/service_permissions.rb index d8cd630139..48edb7de36 100644 --- a/modules/post/windows/escalate/service_permissions.rb +++ b/modules/post/windows/escalate/service_permissions.rb @@ -18,7 +18,7 @@ class Metasploit3 < Msf::Post include ::Msf::Post::WindowsServices def initialize(info={}) super( update_info( info, - 'Name' => 'Windows Service Permissions Local Privilege Escalation', + 'Name' => 'Microsoft Windows Service Permissions Local Privilege Escalation', 'Description' => %q{ Many services are configured with insecure permissions. This module attempts to create a service, then searches through a list of diff --git a/modules/post/windows/gather/checkvm.rb b/modules/post/windows/gather/checkvm.rb index 44b5a972d0..52bd2a09b5 100644 --- a/modules/post/windows/gather/checkvm.rb +++ b/modules/post/windows/gather/checkvm.rb @@ -19,7 +19,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Determine whether the session is a virtual machine', + 'Name' => 'Microsoft Windows Virtual Environment Detection', 'Description' => %q{ Examines various attributes of the victim host to determine if it is a virtual machine and if so displays diff --git a/modules/post/windows/gather/enum_applications.rb b/modules/post/windows/gather/enum_applications.rb index 0c0b219124..6aaea00a01 100644 --- a/modules/post/windows/gather/enum_applications.rb +++ b/modules/post/windows/gather/enum_applications.rb @@ -19,8 +19,8 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Enumerate Installed Applications', - 'Description' => %q{ This module will enumerate installed application on a target host}, + 'Name' => 'Microsoft Windows Installed Application Enumeration', + 'Description' => %q{ This module will enumerate installed applications on a target host}, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez '], 'Version' => '$Revision$', diff --git a/modules/post/windows/gather/enum_logged_on_users.rb b/modules/post/windows/gather/enum_logged_on_users.rb index 3c62ad2d46..d609453a63 100644 --- a/modules/post/windows/gather/enum_logged_on_users.rb +++ b/modules/post/windows/gather/enum_logged_on_users.rb @@ -21,7 +21,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Enumerate logged on users', + 'Name' => 'Microsoft Windows Logged On User Enumeration (Registry)', 'Description' => %q{ This module will enumerate current and recent logged on users}, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez '], diff --git a/modules/post/windows/gather/enum_powershell_env.rb b/modules/post/windows/gather/enum_powershell_env.rb index fa73968752..61c9c4cc64 100644 --- a/modules/post/windows/gather/enum_powershell_env.rb +++ b/modules/post/windows/gather/enum_powershell_env.rb @@ -19,7 +19,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Enumerate Powershell Enviroment', + 'Name' => 'Microsoft Windows Powershell Enviroment Setting Enumeration', 'Description' => %q{ This module will enumerate Microsofts Powershell Settings on a target host}, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez '], diff --git a/modules/post/windows/gather/enum_shares.rb b/modules/post/windows/gather/enum_shares.rb index 761f7a7683..5bba923c01 100644 --- a/modules/post/windows/gather/enum_shares.rb +++ b/modules/post/windows/gather/enum_shares.rb @@ -19,7 +19,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Windows Local SMB Share Enumeration via Registry', + 'Name' => 'Microsoft Windows SMB Share Enumeration via Registry', 'Description' => %q{ This module will enumerate configured and recently used file shares}, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez '], diff --git a/modules/post/windows/gather/enum_snmp.rb b/modules/post/windows/gather/enum_snmp.rb index 0025703eef..fa57928f71 100644 --- a/modules/post/windows/gather/enum_snmp.rb +++ b/modules/post/windows/gather/enum_snmp.rb @@ -20,7 +20,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Enumerate SNMP Configuration', + 'Name' => 'Microsoft Windows SNMP Settings Enumeration (registry)', 'Description' => %q{ This module will enumerate the SNMP Configuration on a target host.}, 'License' => MSF_LICENSE, 'Author' => [ 'Carlos Perez ', 'Tebo '], @@ -158,4 +158,4 @@ class Metasploit3 < Msf::Post print_status("\tCommunity Strings can be accessed from any host") end end -end \ No newline at end of file +end diff --git a/modules/post/windows/gather/hashdump.rb b/modules/post/windows/gather/hashdump.rb index 3f5f844086..8c04039deb 100644 --- a/modules/post/windows/gather/hashdump.rb +++ b/modules/post/windows/gather/hashdump.rb @@ -17,7 +17,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Hashdump', + 'Name' => 'Microsoft Windows Local User Account Password Hashes (Registry)', 'Description' => %q{ Pull the syskey out of the remote registry and decrypt the SAM database }, 'License' => MSF_LICENSE, 'Author' => [ 'hdm' ], diff --git a/modules/post/windows/gather/resolve_sid.rb b/modules/post/windows/gather/resolve_sid.rb index 85e7d5938a..b75b91e458 100644 --- a/modules/post/windows/gather/resolve_sid.rb +++ b/modules/post/windows/gather/resolve_sid.rb @@ -18,7 +18,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Windows Account SID Resolver', + 'Name' => 'Microsoft Windows Local User Account SID Lookup', 'Description' => %q{ This module prints information about a given SID from the perspective of this session }, 'License' => BSD_LICENSE, 'Author' => [ 'chao-mu'], diff --git a/modules/post/windows/manage/delete_user.rb b/modules/post/windows/manage/delete_user.rb index 3c7847ecfa..847dfdcc33 100644 --- a/modules/post/windows/manage/delete_user.rb +++ b/modules/post/windows/manage/delete_user.rb @@ -18,7 +18,7 @@ class Metasploit3 < Msf::Post def initialize(info={}) super( update_info( info, - 'Name' => 'Delete User', + 'Name' => 'Microsoft Windows Local User Account Deletion', 'Description' => %q{ Deletes a user account from the given server (or local if none given)}, 'License' => BSD_LICENSE, 'Author' => [ 'chao-mu'],