This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-ProcessTrace { | |
<# | |
.SYNOPSIS | |
Walks thread stacks of specified process(es) to help identify dll injection. | |
.DESCRIPTION | |
This commandlet uses Windows Remote Management to trace the threads of specified process(es) of remote machines. | |
.PARAMETER ComputerName | |
Specify the hostname or IP address of a remote computer to retrieve data from. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-DosDevice { | |
[CmdletBinding()] | |
Param ( | |
[Parameter()] | |
[ValidateNotNullOrEmpty()] | |
[String]$Name | |
) | |
#region WinAPI |
NewerOlder