diff options
author | Matt Graeber <mattgraeber@gmail.com> | 2013-08-17 16:39:20 -0400 |
---|---|---|
committer | Matt Graeber <mattgraeber@gmail.com> | 2013-08-17 16:39:20 -0400 |
commit | d67e71bf2d87dfce4481eeeaffd871c4173f091c (patch) | |
tree | f0309da79be71f76272b9480b3ffcc97b535b970 | |
parent | ba3361341307104450628b456d8b19ee047ef10e (diff) | |
download | PowerSploit-d67e71bf2d87dfce4481eeeaffd871c4173f091c.tar.gz PowerSploit-d67e71bf2d87dfce4481eeeaffd871c4173f091c.zip |
Out-Minidump now provides descriptive output
Out-Minidump now outputs a FileInfo object (i.e. the same output as
Get-ChildItem) upon successfully creating a dump file.
-rw-r--r-- | Exfiltration/Out-Minidump.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Exfiltration/Out-Minidump.ps1 b/Exfiltration/Out-Minidump.ps1 index be3e4d5..afb7dc9 100644 --- a/Exfiltration/Out-Minidump.ps1 +++ b/Exfiltration/Out-Minidump.ps1 @@ -60,7 +60,7 @@ .OUTPUTS - None + System.IO.FileInfo .LINK @@ -122,7 +122,7 @@ } else { - Write-Verbose "Success! Minidump written to $ProcessDumpPath." + Get-ChildItem $ProcessDumpPath } } |