Skip to content
This repository was archived by the owner on Jan 21, 2021. It is now read-only.

Commit 9f183e3

Browse files
author
Matt Graeber
committed
Set all module versions to 3.0
Also cleaned up some module manifest cruft.
1 parent 29ae830 commit 9f183e3

File tree

9 files changed

+19
-335
lines changed

9 files changed

+19
-335
lines changed

AntivirusBypass/AntivirusBypass.psd1

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
@{
2+
23
# Script module or binary module file associated with this manifest.
34
ModuleToProcess = 'AntivirusBypass.psm1'
45

56
# Version number of this module.
6-
ModuleVersion = '1.0.0.0'
7+
ModuleVersion = '3.0.0.0'
78

89
# ID used to uniquely identify this module
910
GUID = '7cf9de61-2bfc-41b4-a397-9d7cf3a8e66b'
1011

1112
# Author of this module
1213
Author = 'Matthew Graeber'
1314

14-
# Company or vendor of this module
15-
CompanyName = ''
16-
1715
# Copyright statement for this module
1816
Copyright = 'BSD 3-Clause'
1917

@@ -26,18 +24,7 @@ PowerShellVersion = '2.0'
2624
# Functions to export from this module
2725
FunctionsToExport = '*'
2826

29-
# Cmdlets to export from this module
30-
CmdletsToExport = '*'
31-
32-
# Variables to export from this module
33-
VariablesToExport = ''
34-
35-
# Aliases to export from this module
36-
AliasesToExport = ''
37-
38-
# List of all modules packaged with this module.
39-
ModuleList = @(@{ModuleName = 'AntivirusBypass'; ModuleVersion = '1.0.0.0'; GUID = '7cf9de61-2bfc-41b4-a397-9d7cf3a8e66b'})
40-
4127
# List of all files packaged with this module
4228
FileList = 'AntivirusBypass.psm1', 'AntivirusBypass.psd1', 'Find-AVSignature.ps1', 'Usage.md'
29+
4330
}

CodeExecution/CodeExecution.psd1

Lines changed: 1 addition & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ModuleToProcess = 'CodeExecution.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.0.0.0'
7+
ModuleVersion = '3.0.0.0'
88

99
# ID used to uniquely identify this module
1010
GUID = 'a8a6780b-e694-4aa4-b28d-646afa66733c'
@@ -24,65 +24,10 @@ Description = 'PowerSploit Code Execution Module'
2424
# Minimum version of the Windows PowerShell engine required by this module
2525
PowerShellVersion = '2.0'
2626

27-
# Name of the Windows PowerShell host required by this module
28-
# PowerShellHostName = ''
29-
30-
# Minimum version of the Windows PowerShell host required by this module
31-
# PowerShellHostVersion = ''
32-
33-
# Minimum version of the .NET Framework required by this module
34-
# DotNetFrameworkVersion = ''
35-
36-
# Minimum version of the common language runtime (CLR) required by this module
37-
# CLRVersion = ''
38-
39-
# Processor architecture (None, X86, Amd64) required by this module
40-
# ProcessorArchitecture = ''
41-
42-
# Modules that must be imported into the global environment prior to importing this module
43-
# RequiredModules = @()
44-
45-
# Assemblies that must be loaded prior to importing this module
46-
# RequiredAssemblies = @()
47-
48-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
49-
# ScriptsToProcess = ''
50-
51-
# Type files (.ps1xml) to be loaded when importing this module
52-
# TypesToProcess = @()
53-
54-
# Format files (.ps1xml) to be loaded when importing this module
55-
# FormatsToProcess = @()
56-
57-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
58-
# NestedModules = @()
59-
6027
# Functions to export from this module
6128
FunctionsToExport = '*'
6229

63-
# Cmdlets to export from this module
64-
CmdletsToExport = '*'
65-
66-
# Variables to export from this module
67-
VariablesToExport = ''
68-
69-
# Aliases to export from this module
70-
AliasesToExport = ''
71-
72-
# List of all modules packaged with this module.
73-
ModuleList = @(@{ModuleName = 'CodeExecution'; ModuleVersion = '1.0.0.0'; GUID = 'a8a6780b-e694-4aa4-b28d-646afa66733c'})
74-
7530
# List of all files packaged with this module
7631
FileList = 'CodeExecution.psm1', 'CodeExecution.psd1', 'Invoke-Shellcode.ps1', 'Invoke-DllInjection.ps1',
7732
'Invoke-ReflectivePEInjection.ps1', 'Invoke-WmiCommand.ps1', 'Usage.md'
78-
79-
# Private data to pass to the module specified in RootModule/ModuleToProcess
80-
# PrivateData = ''
81-
82-
# HelpInfo URI of this module
83-
# HelpInfoURI = ''
84-
85-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
86-
# DefaultCommandPrefix = ''
87-
8833
}

Exfiltration/Exfiltration.psd1

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,14 @@
44
ModuleToProcess = 'Exfiltration.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.0.0.0'
7+
ModuleVersion = '3.0.0.0'
88

99
# ID used to uniquely identify this module
1010
GUID = '75dafa99-1402-4e29-b5d4-6c87da2b323a'
1111

1212
# Author of this module
1313
Author = 'Matthew Graeber'
1414

15-
# Company or vendor of this module
16-
CompanyName = ''
17-
1815
# Copyright statement for this module
1916
Copyright = 'BSD 3-Clause'
2017

@@ -30,18 +27,6 @@ FormatsToProcess = 'Get-VaultCredential.ps1xml'
3027
# Functions to export from this module
3128
FunctionsToExport = '*'
3229

33-
# Cmdlets to export from this module
34-
CmdletsToExport = '*'
35-
36-
# Variables to export from this module
37-
VariablesToExport = ''
38-
39-
# Aliases to export from this module
40-
AliasesToExport = ''
41-
42-
# List of all modules packaged with this module.
43-
ModuleList = @(@{ModuleName = 'Exfiltration'; ModuleVersion = '1.0.0.0'; GUID = '75dafa99-1402-4e29-b5d4-6c87da2b323a'})
44-
4530
# List of all files packaged with this module
4631
FileList = 'Exfiltration.psm1', 'Exfiltration.psd1', 'Get-TimedScreenshot.ps1', 'Out-Minidump.ps1',
4732
'Get-Keystrokes.ps1', 'Get-GPPPassword.ps1', 'Usage.md', 'Invoke-Mimikatz.ps1',

Mayhem/Mayhem.psd1

Lines changed: 1 addition & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,14 @@
44
ModuleToProcess = 'Mayhem.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.0.0.0'
7+
ModuleVersion = '3.0.0.0'
88

99
# ID used to uniquely identify this module
1010
GUID = 'e65b93ff-63ba-4c38-97f1-bc4fe5a6651c'
1111

1212
# Author of this module
1313
Author = 'Matthew Graeber'
1414

15-
# Company or vendor of this module
16-
CompanyName = ''
17-
1815
# Copyright statement for this module
1916
Copyright = 'BSD 3-Clause'
2017

@@ -24,64 +21,10 @@ Description = 'PowerSploit Mayhem Module'
2421
# Minimum version of the Windows PowerShell engine required by this module
2522
PowerShellVersion = '2.0'
2623

27-
# Name of the Windows PowerShell host required by this module
28-
# PowerShellHostName = ''
29-
30-
# Minimum version of the Windows PowerShell host required by this module
31-
# PowerShellHostVersion = ''
32-
33-
# Minimum version of the .NET Framework required by this module
34-
# DotNetFrameworkVersion = ''
35-
36-
# Minimum version of the common language runtime (CLR) required by this module
37-
# CLRVersion = ''
38-
39-
# Processor architecture (None, X86, Amd64) required by this module
40-
# ProcessorArchitecture = ''
41-
42-
# Modules that must be imported into the global environment prior to importing this module
43-
# RequiredModules = @()
44-
45-
# Assemblies that must be loaded prior to importing this module
46-
# RequiredAssemblies = @()
47-
48-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
49-
# ScriptsToProcess = ''
50-
51-
# Type files (.ps1xml) to be loaded when importing this module
52-
# TypesToProcess = @()
53-
54-
# Format files (.ps1xml) to be loaded when importing this module
55-
# FormatsToProcess = @()
56-
57-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
58-
# NestedModules = @()
59-
6024
# Functions to export from this module
6125
FunctionsToExport = '*'
6226

63-
# Cmdlets to export from this module
64-
CmdletsToExport = '*'
65-
66-
# Variables to export from this module
67-
VariablesToExport = ''
68-
69-
# Aliases to export from this module
70-
AliasesToExport = ''
71-
72-
# List of all modules packaged with this module.
73-
ModuleList = @(@{ModuleName = 'Mayhem'; ModuleVersion = '1.0.0.0'; GUID = 'e65b93ff-63ba-4c38-97f1-bc4fe5a6651c'})
74-
7527
# List of all files packaged with this module
7628
FileList = 'Mayhem.psm1', 'Mayhem.psd1', 'Usage.md'
7729

78-
# Private data to pass to the module specified in RootModule/ModuleToProcess
79-
# PrivateData = ''
80-
81-
# HelpInfo URI of this module
82-
# HelpInfoURI = ''
83-
84-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
85-
# DefaultCommandPrefix = ''
86-
8730
}

Persistence/Persistence.psd1

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ModuleToProcess = 'Persistence.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.1.1.0'
7+
ModuleVersion = '3.0.0.0'
88

99
# ID used to uniquely identify this module
1010
GUID = '633d0f10-a056-41da-869d-6d2f75430195'
@@ -24,9 +24,6 @@ PowerShellVersion = '2.0'
2424
# Functions to export from this module
2525
FunctionsToExport = '*'
2626

27-
# Cmdlets to export from this module
28-
CmdletsToExport = '*'
29-
3027
# List of all files packaged with this module
3128
FileList = 'Persistence.psm1', 'Persistence.psd1', 'Usage.md'
3229

PowerSploit.psd1

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ModuleToProcess = 'PowerSploit.psm1'
44

55
# Version number of this module.
6-
ModuleVersion = '1.0.0.0'
6+
ModuleVersion = '3.0.0.0'
77

88
# ID used to uniquely identify this module
99
GUID = '6753b496-d842-40a3-924a-0f09e248640c'
@@ -138,13 +138,13 @@ FunctionsToExport = @(
138138
)
139139

140140
# List of all modules packaged with this module.
141-
ModuleList = @( @{ModuleName = 'AntivirusBypass'; ModuleVersion = '1.0.0.0'; GUID = '7cf9de61-2bfc-41b4-a397-9d7cf3a8e66b'},
142-
@{ModuleName = 'CodeExecution'; ModuleVersion = '1.0.0.0'; GUID = 'a8a6780b-e694-4aa4-b28d-646afa66733c'},
143-
@{ModuleName = 'Exfiltration'; ModuleVersion = '1.0.0.0'; GUID = '75dafa99-1402-4e29-b5d4-6c87da2b323a'},
144-
@{ModuleName = 'Recon'; ModuleVersion = '1.0.0.0'; GUID = '7e775ad6-cd3d-4a93-b788-da067274c877'},
145-
@{ModuleName = 'ScriptModification'; ModuleVersion = '1.0.0.0'; GUID = 'a4d86266-b39b-437a-b5bb-d6f99aa6e610'},
146-
@{ModuleName = 'Persistence'; ModuleVersion = '1.0.0.0'; GUID = '633d0f10-a056-41da-869d-6d2f75430195'},
147-
@{ModuleName = 'PrivEsc'; ModuleVersion = '1.0.0.0'; GUID = 'efb2a78f-a069-4bfd-91c2-7c7c0c225f56'} )
141+
ModuleList = @( @{ModuleName = 'AntivirusBypass'; ModuleVersion = '3.0.0.0'; GUID = '7cf9de61-2bfc-41b4-a397-9d7cf3a8e66b'},
142+
@{ModuleName = 'CodeExecution'; ModuleVersion = '3.0.0.0'; GUID = 'a8a6780b-e694-4aa4-b28d-646afa66733c'},
143+
@{ModuleName = 'Exfiltration'; ModuleVersion = '3.0.0.0'; GUID = '75dafa99-1402-4e29-b5d4-6c87da2b323a'},
144+
@{ModuleName = 'Recon'; ModuleVersion = '3.0.0.0'; GUID = '7e775ad6-cd3d-4a93-b788-da067274c877'},
145+
@{ModuleName = 'ScriptModification'; ModuleVersion = '3.0.0.0'; GUID = 'a4d86266-b39b-437a-b5bb-d6f99aa6e610'},
146+
@{ModuleName = 'Persistence'; ModuleVersion = '3.0.0.0'; GUID = '633d0f10-a056-41da-869d-6d2f75430195'},
147+
@{ModuleName = 'PrivEsc'; ModuleVersion = '3.0.0.0'; GUID = 'efb2a78f-a069-4bfd-91c2-7c7c0c225f56'} )
148148

149149
PrivateData = @{
150150

@@ -162,4 +162,5 @@ PrivateData = @{
162162
}
163163

164164
}
165+
165166
}

Privesc/Privesc.psd1

Lines changed: 1 addition & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,14 @@
44
ModuleToProcess = 'Privesc.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.0.0.0'
7+
ModuleVersion = '3.0.0.0'
88

99
# ID used to uniquely identify this module
1010
GUID = 'efb2a78f-a069-4bfd-91c2-7c7c0c225f56'
1111

1212
# Author of this module
1313
Author = 'Will Schroder'
1414

15-
# Company or vendor of this module
16-
CompanyName = ''
17-
1815
# Copyright statement for this module
1916
Copyright = 'BSD 3-Clause'
2017

@@ -24,39 +21,6 @@ Description = 'PowerSploit Privesc Module'
2421
# Minimum version of the Windows PowerShell engine required by this module
2522
PowerShellVersion = '2.0'
2623

27-
# Name of the Windows PowerShell host required by this module
28-
# PowerShellHostName = ''
29-
30-
# Minimum version of the Windows PowerShell host required by this module
31-
# PowerShellHostVersion = ''
32-
33-
# Minimum version of Microsoft .NET Framework required by this module
34-
# DotNetFrameworkVersion = ''
35-
36-
# Minimum version of the common language runtime (CLR) required by this module
37-
# CLRVersion = ''
38-
39-
# Processor architecture (None, X86, Amd64) required by this module
40-
# ProcessorArchitecture = ''
41-
42-
# Modules that must be imported into the global environment prior to importing this module
43-
# RequiredModules = @()
44-
45-
# Assemblies that must be loaded prior to importing this module
46-
# RequiredAssemblies = @()
47-
48-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
49-
# ScriptsToProcess = @()
50-
51-
# Type files (.ps1xml) to be loaded when importing this module
52-
# TypesToProcess = @()
53-
54-
# Format files (.ps1xml) to be loaded when importing this module
55-
# FormatsToProcess = @()
56-
57-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
58-
# NestedModules = @()
59-
6024
# Functions to export from this module
6125
FunctionsToExport = @(
6226
'Get-ServiceUnquoted',
@@ -81,32 +45,8 @@ FunctionsToExport = @(
8145
'Invoke-AllChecks'
8246
)
8347

84-
# Cmdlets to export from this module
85-
CmdletsToExport = '*'
86-
87-
# Variables to export from this module
88-
VariablesToExport = '*'
89-
90-
# Aliases to export from this module
91-
AliasesToExport = '*'
92-
93-
# DSC resources to export from this module
94-
# DscResourcesToExport = @()
95-
96-
# List of all modules packaged with this module
97-
ModuleList = @(@{ModuleName = 'Privesc'; ModuleVersion = '1.0.0.0'; GUID = 'efb2a78f-a069-4bfd-91c2-7c7c0c225f56'})
98-
9948
# List of all files packaged with this module
10049
FileList = 'Privesc.psm1', 'PowerUp.ps1', 'README.md'
10150

102-
# Private data to pass to the module specified in RootModule/ModuleToProcess
103-
# PrivateData = ''
104-
105-
# HelpInfo URI of this module
106-
# HelpInfoURI = ''
107-
108-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
109-
# DefaultCommandPrefix = ''
110-
11151
}
11252

0 commit comments

Comments
 (0)