获取进程命令行之一

引用内容 引用内容

Private Type CLIENT_ID
    UniqueProcess
As Long
    
UniqueThread  As Long
End
Type

Private Const SYNCHRONIZE As Long = &H100000

Private Const STANDARD_RIGHTS_REQUIRED As Long = &HF0000

Private Declare Function NtOpenProcess Lib "NTDLL.DLL" (ByRef ProcessHandle As Long, _
                                
ByVal AccessMask As Long, _
                                
ByRef ObjectAttributes As OBJECT_ATTRIBUTES, _
                                
ByRef ClientID As CLIENT_ID) As Long

Private
Type OBJECT_ATTRIBUTES
    Length
As Long
    
RootDirectory As Long
    
ObjectName As Long
    
Attributes As Long
    
SecurityDescriptor As Long
    
SecurityQualityOfService As Long
End
Type

Private Const PROCESS_VM_READ = &H10
Private Const PROCESS_Create_THREAD = &H2
Private Const PROCESS_VM_OPERATION = &H8
Private Const PROCESS_QUERY_INFORMATION As Long = (&H400)

Private Const PROCESS_ALL_ACCESS As Long = (STANDARD_RIGHTS_REQUIRED Or SYNCHRONIZE Or &HFFF)

Private Const PROCESS_DUP_HANDLE As Long = (&H40)
Private Declare Function ReadProcessMemory Lib "kernel32" (ByVal hProcess As Long, lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
Private Declare Function
LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As Long
Private Declare Function
GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As Long
Private Declare Function
FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long
Private Declare Function
NtClose Lib "NTDLL.DLL" (ByVal ObjectHandle As Long) As Long
Private Declare Sub
CopyMemory Lib "kernel32.dll" Alias "RtlMoveMemory" (ByRef Destination As Any, _
                                      
ByRef Source As Any, _
                                      
ByVal Length As Long)
Private Function GetProcessCommandLine(ByVal dwProcessId As Long) As String
    Dim
objCid As CLIENT_ID
    
Dim objOa As OBJECT_ATTRIBUTES
    
Dim ntStatus As Long, hKernel As Long, strName As String
    Dim
hProcess As Long, dwAddr As Long, dwRead As Long
    
objOa.Length = Len(objOa)
    objCid.UniqueProcess = dwProcessId
    ntStatus = NtOpenProcess(hProcess,
&H10, objOa, objCid)
    
If hProcess = 0 Then
        
GetProcessCommandLine = ""
        
Exit Function
    End If
    
hKernel = LoadLibrary("kernel32")
    dwAddr = GetProcAddress(hKernel,
"GetCommandLineA")
    CopyMemory dwAddr,
ByVal dwAddr + 1, 4
    
If ReadProcessMemory(hProcess, ByVal dwAddr, dwAddr, 4, dwRead) Then
        
strName = String(260, Chr(0))
        
If ReadProcessMemory(hProcess, ByVal dwAddr, ByVal strName, 260, dwRead) Then
            
strName = Left(strName, InStr(strName, Chr(0)) - 1)
            NtClose hProcess
            GetProcessCommandLine = strName
            
Exit Function
        End If
    End If
    
NtClose hProcess
End Function



[本日志由 JiaJia 于 2008-03-29 05:11 PM 编辑]
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: VB 进程
评论: 0 | 引用: 0 | 查看次数: -
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.