File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3005,6 +3005,7 @@ def import_filetype_detect(data)
3005
3005
@import_filedata [ :zip_entry_names ] = data . entries . map { |x | x . name }
3006
3006
3007
3007
if @import_filedata [ :zip_entry_names ] . include? ( Metasploit ::Credential ::Importer ::Zip ::MANIFEST_FILE_NAME )
3008
+ @import_filedata [ :type ] = "Metasploit Credential Dump"
3008
3009
return :msf_cred_dump_zip
3009
3010
end
3010
3011
@@ -3819,7 +3820,7 @@ def import_msf_collateral(args={}, &block)
3819
3820
# Import credentials given a path to a valid manifest file
3820
3821
#
3821
3822
# @param creds_dump_manifest_path [String]
3822
- # @param workspace [Mdm::Workspace]
3823
+ # @param workspace [Mdm::Workspace] Default: {#workspace}
3823
3824
# @return [void]
3824
3825
def import_msf_cred_dump ( creds_dump_manifest_path , workspace )
3825
3826
manifest_file = File . open ( creds_dump_manifest_path )
@@ -3830,7 +3831,8 @@ def import_msf_cred_dump(creds_dump_manifest_path, workspace)
3830
3831
3831
3832
# Import credentials given a path to a valid manifest file
3832
3833
#
3833
- # @opt args [String] :filename
3834
+ # @option args [String] :filename
3835
+ # @option args [Mdm::Workspace] :wspace Default: {#workspace}
3834
3836
# @return [void]
3835
3837
def import_msf_cred_dump_zip ( args = { } )
3836
3838
wspace = args [ :wspace ] || workspace
You can’t perform that action at this time.
0 commit comments