-
Notifications
You must be signed in to change notification settings - Fork 24
/
TokenTactics.psd1
36 lines (24 loc) · 1.36 KB
/
TokenTactics.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
@{
# Script module or binary module file associated with this manifest.
RootModule = 'TokenTactics.psm1'
# Version number of this module.
ModuleVersion = '0.2.4'
# ID used to uniquely identify this module
GUID = '6194f0f0-8b91-4c32-b1b1-bc46c9d7a95c'
# Author of this module
Author = 'Stephan Borosh & Bobby Cooke & Fabian Bader'
# Copyright statement for this module
Copyright = 'BSD 3-Clause'
# Description of the functionality provided by this module
Description = 'Azure JSON Web Token ("JWT") Token Manipulation Toolset'
# 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', 'jwt', 'token', 'azure')
LicenseUri = 'https://github.com/f-bader/TokenTacticsv2/blob/main/LICENSE'
ProjectUri = 'https://github.com/f-bader/TokenTacticsv2'
} # End of PSData hashtable
} # End of PrivateData hashtable
}