Results 1 to 8 of 8

Thread: Can I hide my app's process in Vista?

  1. #1

    Thread Starter
    Member
    Join Date
    Jun 2003
    Posts
    44

    Can I hide my app's process in Vista?

    I use this code to hide process in XP/2000 successfully, But can i use it in Vista?

    Code:
    Private Const STATUS_INFO_LENGTH_MISMATCH = &HC0000004
    Private Const STATUS_ACCESS_DENIED = &HC0000022
    Private Const STATUS_INVALID_HANDLE = &HC0000008
    Private Const ERROR_SUCCESS = 0&
    Private Const SECTION_MAP_WRITE = &H2
    Private Const SECTION_MAP_READ = &H4
    Private Const READ_CONTROL = &H20000
    Private Const WRITE_DAC = &H40000
    Private Const NO_INHERITANCE = 0
    Private Const DACL_SECURITY_INFORMATION = &H4
    
    Private Type IO_STATUS_BLOCK
        Status As Long
        Information As Long
    End Type
    
    Private Type UNICODE_STRING
        Length As Integer
        MaximumLength As Integer
        Buffer As Long
    End Type
    
    Private Const OBJ_INHERIT = &H2
    Private Const OBJ_PERMANENT = &H10
    Private Const OBJ_EXCLUSIVE = &H20
    Private Const OBJ_CASE_INSENSITIVE = &H40
    Private Const OBJ_OPENIF = &H80
    Private Const OBJ_OPENLINK = &H100
    Private Const OBJ_KERNEL_HANDLE = &H200
    Private Const OBJ_VALID_ATTRIBUTES = &H3F2
    
    Private Type OBJECT_ATTRIBUTES
        Length As Long
        RootDirectory As Long
        ObjectName As Long
        Attributes As Long
        SecurityDeor As Long
        SecurityQualityOfService As Long
    End Type
    
    Private Type ACL
        AclRevision As Byte
        Sbz1 As Byte
        AclSize As Integer
        AceCount As Integer
        Sbz2 As Integer
    End Type
    
    Private Enum ACCESS_MODE
        NOT_USED_ACCESS
        GRANT_ACCESS
        SET_ACCESS
        DENY_ACCESS
        REVOKE_ACCESS
        SET_AUDIT_SUCCESS
        SET_AUDIT_FAILURE
    End Enum
    
    Private Enum MULTIPLE_TRUSTEE_OPERATION
        NO_MULTIPLE_TRUSTEE
        TRUSTEE_IS_IMPERSONATE
    End Enum
    
    Private Enum TRUSTEE_FORM
        TRUSTEE_IS_SID
        TRUSTEE_IS_NAME
    End Enum
    
    Private Enum TRUSTEE_TYPE
        TRUSTEE_IS_UNKNOWN
        TRUSTEE_IS_USER
        TRUSTEE_IS_GROUP
    End Enum
    
    Private Type TRUSTEE
        pMultipleTrustee            As Long
        MultipleTrusteeOperation    As MULTIPLE_TRUSTEE_OPERATION
        TrusteeForm                 As TRUSTEE_FORM
        TrusteeType                 As TRUSTEE_TYPE
        ptstrName                   As String
    End Type
    
    Private Type EXPLICIT_ACCESS
        grfAccessPermissions        As Long
        grfAccessMode               As ACCESS_MODE
        grfInheritance              As Long
        TRUSTEE                     As TRUSTEE
    End Type
    
    Private Type AceArray
        List() As EXPLICIT_ACCESS
    End Type
    
    Private Enum SE_OBJECT_TYPE
        SE_UNKNOWN_OBJECT_TYPE = 0
        SE_FILE_OBJECT
        SE_SERVICE
        SE_PRINTER
        SE_REGISTRY_KEY
        SE_LMSHARE
        SE_KERNEL_OBJECT
        SE_WINDOW_OBJECT
        SE_DS_OBJECT
        SE_DS_OBJECT_ALL
        SE_PROVIDER_DEFINED_OBJECT
        SE_WMIGUID_OBJECT
    End Enum
    
    Private Declare Function SetSecurityInfo Lib "advapi32.dll" (ByVal Handle As Long, ByVal ObjectType As SE_OBJECT_TYPE, ByVal SecurityInfo As Long, ppsidOwner As Long, ppsidGroup As Long, ppDacl As Any, ppSacl As Any) As Long
    Private Declare Function GetSecurityInfo Lib "advapi32.dll" (ByVal Handle As Long, ByVal ObjectType As SE_OBJECT_TYPE, ByVal SecurityInfo As Long, ppsidOwner As Long, ppsidGroup As Long, ppDacl As Any, ppSacl As Any, ppSecurityDeor As Long) As Long
                                                                
    Private Declare Function SetEntriesInAcl Lib "advapi32.dll" Alias "SetEntriesInAclA" (ByVal cCountOfExplicitEntries As Long, pListOfExplicitEntries As EXPLICIT_ACCESS, ByVal OldAcl As Long, NewAcl As Long) As Long
    Private Declare Sub BuildExplicitAccessWithName Lib "advapi32.dll" Alias "BuildExplicitAccessWithNameA" (pExplicitAccess As EXPLICIT_ACCESS, ByVal pTrusteeName As String, ByVal AccessPermissions As Long, ByVal AccessMode As ACCESS_MODE, ByVal Inheritance As Long)
                                                            
    Private Declare Sub RtlInitUnicodeString Lib "NTDLL.DLL" (DestinationString As UNICODE_STRING, ByVal SourceString As Long)
    Private Declare Function ZwOpenSection Lib "NTDLL.DLL" (SectionHandle As Long, ByVal DesiredAccess As Long, ObjectAttributes As Any) As Long
    Private Declare Function LocalFree Lib "kernel32" (ByVal hMem As Any) As Long
    Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
    Private Declare Function MapViewOfFile Lib "kernel32" (ByVal hFileMappingObject As Long, ByVal dwDesiredAccess As Long, ByVal dwFileOffsetHigh As Long, ByVal dwFileOffsetLow As Long, ByVal dwNumberOfBytesToMap As Long) As Long
    Private Declare Function UnmapViewOfFile Lib "kernel32" (lpBaseAddress As Any) As Long
    Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal Length As Long)
    Private Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (lpVersionInformation As OSVERSIONINFO) As Long
    
    Private Type OSVERSIONINFO
        dwOSVersionInfoSize As Long
        dwMajorVersion As Long
        dwMinorVersion As Long
        dwBuildNumber As Long
        dwPlatformId As Long
        szCSDVersion As String * 128
    End Type
       
    Private verinfo As OSVERSIONINFO
       
    Private g_hNtDLL As Long
    Private g_pMapPhysicalMemory As Long
    Private g_hMPM As Long
    Private aByte(3) As Byte
    Public Sub HideCurrentProcess()
    '在进程列表中隐藏当前应用程序进程
    
        Dim thread As Long, process As Long, fw As Long, bw As Long
        Dim lOffsetFlink As Long, lOffsetBlink As Long, lOffsetPID As Long
        
        verinfo.dwOSVersionInfoSize = Len(verinfo)
        If (GetVersionEx(verinfo)) <> 0 Then
            If verinfo.dwPlatformId = 2 Then
                If verinfo.dwMajorVersion = 5 Then
                    Select Case verinfo.dwMinorVersion
                        Case 0
                            lOffsetFlink = &HA0
                            lOffsetBlink = &HA4
                            lOffsetPID = &H9C
                        Case 1
                            lOffsetFlink = &H88
                            lOffsetBlink = &H8C
                            lOffsetPID = &H84
                    End Select
                End If
            End If
        End If
    
        If OpenPhysicalMemory <> 0 Then
            thread = GetData(&HFFDFF124)
            process = GetData(thread + &H44)
            fw = GetData(process + lOffsetFlink)
            bw = GetData(process + lOffsetBlink)
            SetData fw + 4, bw
            SetData bw, fw
            CloseHandle g_hMPM
        End If
    End Sub
    I love VB6

    < advertising links removed by moderator >

  2. #2

    Thread Starter
    Member
    Join Date
    Jun 2003
    Posts
    44

    Re: Can I hide my app's process in Vista?

    Code:
    Private Sub SetPhyscialMemorySectionCanBeWrited(ByVal hSection As Long)
        Dim pDacl As Long
        Dim pNewDacl As Long
        Dim pSD As Long
        Dim dwRes As Long
        Dim ea As EXPLICIT_ACCESS
        
        GetSecurityInfo hSection, SE_KERNEL_OBJECT, DACL_SECURITY_INFORMATION, 0, 0, pDacl, 0, pSD
             
        ea.grfAccessPermissions = SECTION_MAP_WRITE
        ea.grfAccessMode = GRANT_ACCESS
        ea.grfInheritance = NO_INHERITANCE
        ea.TRUSTEE.TrusteeForm = TRUSTEE_IS_NAME
        ea.TRUSTEE.TrusteeType = TRUSTEE_IS_USER
        ea.TRUSTEE.ptstrName = "CURRENT_USER" & vbNullChar
    
        SetEntriesInAcl 1, ea, pDacl, pNewDacl
        
        SetSecurityInfo hSection, SE_KERNEL_OBJECT, DACL_SECURITY_INFORMATION, 0, 0, ByVal pNewDacl, 0
                                    
    CleanUp:
        LocalFree pSD
        LocalFree pNewDacl
    End Sub
    
    Private Function OpenPhysicalMemory() As Long
        Dim Status As Long
        Dim PhysmemString As UNICODE_STRING
        Dim Attributes As OBJECT_ATTRIBUTES
        
        RtlInitUnicodeString PhysmemString, StrPtr("\Device\PhysicalMemory")
        Attributes.Length = Len(Attributes)
        Attributes.RootDirectory = 0
        Attributes.ObjectName = VarPtr(PhysmemString)
        Attributes.Attributes = 0
        Attributes.SecurityDeor = 0
        Attributes.SecurityQualityOfService = 0
        
        Status = ZwOpenSection(g_hMPM, SECTION_MAP_READ Or SECTION_MAP_WRITE, Attributes)
        If Status = STATUS_ACCESS_DENIED Then
            Status = ZwOpenSection(g_hMPM, READ_CONTROL Or WRITE_DAC, Attributes)
            SetPhyscialMemorySectionCanBeWrited g_hMPM
            CloseHandle g_hMPM
            Status = ZwOpenSection(g_hMPM, SECTION_MAP_READ Or SECTION_MAP_WRITE, Attributes)
        End If
        
        Dim lDirectoty As Long
        verinfo.dwOSVersionInfoSize = Len(verinfo)
        If (GetVersionEx(verinfo)) <> 0 Then
            If verinfo.dwPlatformId = 2 Then
                If verinfo.dwMajorVersion = 5 Then
                    Select Case verinfo.dwMinorVersion
                        Case 0
                            lDirectoty = &H30000
                        Case 1
                            lDirectoty = &H39000
                    End Select
                End If
            End If
        End If
        
        If Status = 0 Then
            g_pMapPhysicalMemory = MapViewOfFile(g_hMPM, 4, 0, lDirectoty, &H1000)
            If g_pMapPhysicalMemory <> 0 Then OpenPhysicalMemory = g_hMPM
        End If
    End Function
    
    Private Function LinearToPhys(BaseAddress As Long, addr As Long) As Long
        Dim VAddr As Long, PGDE As Long, PTE As Long, PAddr As Long
        Dim lTemp As Long
        
        VAddr = addr
        CopyMemory aByte(0), VAddr, 4
        lTemp = Fix(ByteArrToLong(aByte) / (2 ^ 22))
        
        PGDE = BaseAddress + lTemp * 4
        CopyMemory PGDE, ByVal PGDE, 4
        
        If (PGDE And 1) <> 0 Then
            lTemp = PGDE And &H80
            If lTemp <> 0 Then
                PAddr = (PGDE And &HFFC00000) + (VAddr And &H3FFFFF)
            Else
                PGDE = MapViewOfFile(g_hMPM, 4, 0, PGDE And &HFFFFF000, &H1000)
                lTemp = (VAddr And &H3FF000) / (2 ^ 12)
                PTE = PGDE + lTemp * 4
                CopyMemory PTE, ByVal PTE, 4
                
                If (PTE And 1) <> 0 Then
                    PAddr = (PTE And &HFFFFF000) + (VAddr And &HFFF)
                    UnmapViewOfFile PGDE
                End If
            End If
        End If
        
        LinearToPhys = PAddr
    End Function
    
    Private Function GetData(addr As Long) As Long
        Dim phys As Long, tmp As Long, ret As Long
        
        phys = LinearToPhys(g_pMapPhysicalMemory, addr)
        tmp = MapViewOfFile(g_hMPM, 4, 0, phys And &HFFFFF000, &H1000)
        If tmp <> 0 Then
            ret = tmp + ((phys And &HFFF) / (2 ^ 2)) * 4
            CopyMemory ret, ByVal ret, 4
            
            UnmapViewOfFile tmp
            GetData = ret
        End If
    End Function
    
    Private Function SetData(ByVal addr As Long, ByVal data As Long) As Boolean
        Dim phys As Long, tmp As Long, x As Long
        
        phys = LinearToPhys(g_pMapPhysicalMemory, addr)
        tmp = MapViewOfFile(g_hMPM, SECTION_MAP_WRITE, 0, phys And &HFFFFF000, &H1000)
        If tmp <> 0 Then
            x = tmp + ((phys And &HFFF) / (2 ^ 2)) * 4
            CopyMemory ByVal x, data, 4
            
            UnmapViewOfFile tmp
            SetData = True
        End If
    End Function
    
    Private Function ByteArrToLong(inByte() As Byte) As Double
        Dim I As Integer
        For I = 0 To 3
            ByteArrToLong = ByteArrToLong + inByte(I) * (&H100 ^ I)
        Next I
    End Function
    I love VB6

    < advertising links removed by moderator >

  3. #3
    Interweb adm/o/distrator Paul M's Avatar
    Join Date
    Nov 2006
    Location
    Australia, Melbourne
    Posts
    2,306

    Re: Can I hide my app's process in Vista?

    Is there any specific line that is not working?

  4. #4
    New Member
    Join Date
    May 2007
    Posts
    1

    Re: Can I hide my app's process in Vista?

    Hi!
    I tried your code (Windows XP) but it doesn't work...can you, please, send me source code?
    Anyway, i am trying to hide a process in Vista...it's quite hard.
    I found a solution using LVM_DELETEITEM in the Task Manager listview but i am looking for a better one.

    Thank you!

  5. #5
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431

    Re: Can I hide my app's process in Vista?

    Quote Originally Posted by MaskPZ
    Hi!
    I tried your code (Windows XP) but it doesn't work...can you, please, send me source code?
    Anyway, i am trying to hide a process in Vista...it's quite hard.
    I found a solution using LVM_DELETEITEM in the Task Manager listview but i am looking for a better one.

    Thank you!

    Why do you want to hide the process?

  6. #6
    New Member
    Join Date
    May 2007
    Posts
    1

    Re: Can I hide my app's process in Vista?

    i have tried your source code in win xp but it doesn't work could u send me it via e-mail, [edited out by Mod] please
    i did a program to control the internet access killing the process like msnmsgr, ares, limeware etc, so, i need to hide my aplication from the task managger or set security for this aplication in order to don't let the users kill the process, may u help me please, i really apreaciate it
    Last edited by Hack; May 29th, 2007 at 10:50 AM. Reason: Removed Email address

  7. #7
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Can I hide my app's process in Vista?

    I have edited your post and removed your email address.

    You should never post your email address in an open post on an open forum. Mail spam bots can pick that up and before you know it, your mailbox is full of junk mail. If you wish to share your email address with other forum members, please do so via our PM system.

  8. #8
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Can I hide my app's process in Vista?

    Welcome to the forums.
    Quote Originally Posted by Falb_03
    i have tried your source code in win xp but it doesn't work could u send me it via e-mail
    I have a question. If it didn't work, why do you want it?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width