forked from LeeHolmes/AutoRuns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoRuns.psd1
53 lines (33 loc) · 3.04 KB
/
AutoRuns.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
@{
# Script module or binary module file associated with this manifest.
RootModule = 'AutoRuns.psm1'
# Version number of this module.
ModuleVersion = '13.61'
# ID used to uniquely identify this module
GUID = '5df29b51-5627-43f6-bcae-a07a62887a2f'
# 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 = 'AutoRuns is a module that will help do live incident response and enumerate autoruns artifacts that may be used by legitimate programs as well as malware to achieve persistence'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '3.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-PSAutorun')
# FunctionsToExport = '*'
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('security','defense')
# 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/AutoRuns'
} # End of PSData hashtable
} # End of PrivateData hashtable
}