Get-VirusIPReport.psd1

@{

    # Script module or binary module file associated with this manifest.
    RootModule = 'Get-VirusIPReport.psm1'
    
    # Version number of this module.
    ModuleVersion = '1.0.0'
    
    # ID used to uniquely identify this module
    GUID = '9559640a-0120-4cc8-ba19-e62ba6205227'
    
    # Author of this module
    Author = 'simeononsecurity.ch'
    
    # Company or vendor of this module
    CompanyName = 'SimeonOnSecurity'
    
    # Copyright statement for this module
    Copyright = '(c) 2020-2023 SimeonOnSecurity. All rights reserved.'
    
    # Description of the functionality provided by this module
    Description = 'A PowerShell script module to retrieve the VirusTotal report for a specified IP address.'
    
    # Functions to export from this module
    FunctionsToExport = 'Get-VirusIPReport'
    
    # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
    PrivateData = @{
    
        PSData = @{
    
            # Tags applied to this module. These help with module discovery in online galleries.
            Tags = 'VirusTotal', 'File', 'Scan', 'AntiVirus', 'PowerShell', 'Module'
    
            # A URL to the main website for this project.
            ProjectUri = 'https://github.com/simeononsecurity/VirusTotal-PS'
    
            # ReleaseNotes of this module
            ReleaseNotes = 'Init'
        } # End of PSData hashtable
    
    } # End of PrivateData hashtable
    
}