MalwareBazaar.psd1

@{

# Script module or binary module file associated with this manifest.
RootModule = 'MalwareBazaar.psm1'

# Version number of this module.
ModuleVersion = '1.0.0'

# ID used to uniquely identify this module
GUID = '8ebfb71c-5125-4dfd-89d7-c790ee8d3fce'

# Author of this module
Author = 'Emin Atac'

# Copyright statement for this module
Copyright = 'BSD 3-Clause'

# Description of the functionality provided by this module
Description = 'MalwareBazaar is a module that uses its Rest API to gather intel about malware'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '4.0'

# Minimum version of Microsoft .NET Framework required by this module
# DotNetFrameworkVersion = '4.0'

# Minimum version of the common language runtime (CLR) required by this module
# CLRVersion = '4.0'

# Functions to export from this module
FunctionsToExport = @(
'Get-MalwareBazaarSampleHash',
'Get-MalwareBazaarSampleTag',
'Get-MalwareBazaarSampleSignature',
'Get-MalwareBazaarSampleFileType',
'Get-MalwareBazaarSampleClamAVSignature',
'Get-MalwareBazaarSampleImpHash',
'Get-MalwareBazaarSampleTLSH',
'Get-MalwareBazaarSampleTelfhash',
'Get-MalwareBazaarSampleIconDhash',
'Get-MalwareBazaarSampleYaraRule',
'Get-MalwareBazaarSampleCodeSigningCertificate',
'Get-MalwareBazaarSampleRecent',
'Get-MalwareBazaarSampleCodeSigningCertificateBlockList'
)
# FunctionsToExport = '*'

PrivateData = @{

    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = @('security','defense','PSEdition_Core','PSEdition_Desktop')

        # A URL to the license for this module.
        LicenseUri = 'https://opensource.org/licenses/BSD-3-Clause'

        # A URL to the main website for this project.
         ProjectUri = 'https://github.com/p0w3rsh3ll/MalwareBazaar'

    } # End of PSData hashtable

} # End of PrivateData hashtable


}