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

Commit 59b35d1

Browse files
author
mattifestation
committed
Moved Invoke-Shellcode
These things happen
1 parent a574705 commit 59b35d1

File tree

4 files changed

+723
-715
lines changed

4 files changed

+723
-715
lines changed

CodeExecution/CodeExecution.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ AliasesToExport = ''
7373
ModuleList = @(@{ModuleName = 'CodeExecution'; ModuleVersion = '1.0.0.0'; GUID = 'a8a6780b-e694-4aa4-b28d-646afa66733c'})
7474

7575
# List of all files packaged with this module
76-
FileList = 'CodeExecution.psm1', 'CodeExecution.psd1', 'Invoke-Shellcode.ps1', 'Invoke-DllInjection.ps1',
76+
FileList = 'CodeExecution.psm1', 'CodeExecution.psd1', 'Invoke--Shellcode.ps1', 'Invoke-DllInjection.ps1',
7777
'Invoke-ShellcodeMSIL.ps1', 'Invoke-ReflectivePEInjection.ps1', 'Usage.md'
7878

7979
# Private data to pass to the module specified in RootModule/ModuleToProcess

CodeExecution/CodeExecution.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName}
1+
Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | ? {$_.Name -ne 'Invoke-Shellcode.ps1'} | % { . $_.FullName}

0 commit comments

Comments
 (0)