-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCanaryHunter.psd1
30 lines (19 loc) · 1.03 KB
/
CanaryHunter.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
@{
# Script module or binary module file associated with this manifest.
RootModule = 'CanaryHunter.psm1'
# Version number of this module.
ModuleVersion = '0.0.1'
# Author of this module
Author = 'Curtis Ringwald - @C0axx'
# Description of the functionality provided by this module
Description = 'Canary Hunter aims to be a quick PowerShell script to check for Common Canaries in various formats generated for free on canarytokens.org'
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = '*'
# 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 = @('security','pentesting','red team','offense','canary','canary token')
ProjectUri = 'https://github.com/C0axx/CanaryHunter'
} # End of PSData hashtable
} # End of PrivateData hashtable
}