diff options
author | mattifestation <mattgraeber@gmail.com> | 2015-02-03 21:24:28 -0500 |
---|---|---|
committer | mattifestation <mattgraeber@gmail.com> | 2015-02-03 21:24:46 -0500 |
commit | 59b35d1470698b04168275b0ec65fb7905fa72f7 (patch) | |
tree | 4c901a6776bbf7c90b940a435f7f4bc4ee411d6b /CodeExecution/CodeExecution.psm1 | |
parent | a574705ce2dfe93ee7450840b0ba1a6424dbf5ad (diff) | |
download | PowerSploit-59b35d1470698b04168275b0ec65fb7905fa72f7.tar.gz PowerSploit-59b35d1470698b04168275b0ec65fb7905fa72f7.zip |
Moved Invoke-Shellcode
These things happen
Diffstat (limited to 'CodeExecution/CodeExecution.psm1')
-rw-r--r-- | CodeExecution/CodeExecution.psm1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CodeExecution/CodeExecution.psm1 b/CodeExecution/CodeExecution.psm1 index 81d3818..934fa38 100644 --- a/CodeExecution/CodeExecution.psm1 +++ b/CodeExecution/CodeExecution.psm1 @@ -1 +1 @@ -Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} +Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | ? {$_.Name -ne 'Invoke-Shellcode.ps1'} | % { . $_.FullName} |