-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathVirusTotalAnalyzer.psd1
26 lines (26 loc) · 1.29 KB
/
VirusTotalAnalyzer.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@{
AliasesToExport = @('Get-VirusScan')
Author = 'Przemyslaw Klys'
CmdletsToExport = @()
CompanyName = 'Evotec'
CompatiblePSEditions = @('Desktop', 'Core')
Copyright = '(c) 2011 - 2025 Przemyslaw Klys @ Evotec. All rights reserved.'
Description = 'PowerShell module that intearacts with the VirusTotal service using a VirusTotal API (free)'
FunctionsToExport = @('Get-VirusReport', 'New-VirusScan')
GUID = '2e82faa1-d870-42b2-b5aa-4a63bf02f43e'
ModuleVersion = '0.0.5'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
ExternalModuleDependencies = @('Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility')
ProjectUri = 'https://github.com/EvotecIT/VirusTotalAnalyzer'
Tags = @('Windows', 'Linux', 'macOs', 'VirusTotal', 'virus', 'threat', 'analyzer')
}
}
RequiredModules = @(@{
Guid = 'ee272aa8-baaa-4edf-9f45-b6d6f7d844fe'
ModuleName = 'PSSharedGoods'
ModuleVersion = '0.0.303'
}, 'Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility')
RootModule = 'VirusTotalAnalyzer.psm1'
}