Class: Msf::Plugin::CredCollect::CredCollectCommandDispatcher
Instance Attribute Summary
#driver
#shell, #tab_complete_items
Instance Method Summary
collapse
#active_module, #active_module=, #active_session, #active_session=, #build_range_array, #docs_dir, #framework, #initialize, #load_config, #log_error, #remove_lines
#cmd_help, #cmd_help_help, #cmd_help_tabs, #deprecated_cmd, #deprecated_commands, #deprecated_help, #docs_dir, #help_to_s, included, #initialize, #print, #print_error, #print_good, #print_line, #print_status, #print_warning, #tab_complete_directory, #tab_complete_filenames, #tab_complete_generic, #tab_complete_source_address, #unknown_command, #update_prompt
Instance Method Details
#cmd_db_hashes ⇒ Object
21
22
23
24
25
|
# File 'plugins/db_credcollect.rb', line 21
def cmd_db_hashes
print_error ''
print_error "db_hashes is deprecated. Use 'creds -s smb' instead."
print_error ''
end
|
#cmd_db_tokens ⇒ Object
27
28
29
30
31
|
# File 'plugins/db_credcollect.rb', line 27
def cmd_db_tokens
print_error ''
print_error "db_tokens is deprecated. Use 'notes -t smb_token' instead."
print_error ''
end
|
#commands ⇒ Object
14
15
16
17
18
19
|
# File 'plugins/db_credcollect.rb', line 14
def commands
{
'db_hashes' => "Dumps hashes (deprecated: use 'creds -s smb')",
'db_tokens' => "Dumps tokens (deprecated: use 'notes -t smb_token')"
}
end
|
#name ⇒ Object
10
11
12
|
# File 'plugins/db_credcollect.rb', line 10
def name
'credcollect'
end
|