网吧的网管软件总是会被非法关闭,我想写一个小软件保护网管软件不被非法关闭,或者关闭后马上自动运行,网吧系统是98se,保护软件不能在ctrl+alt+del中显示出来,不知道该如何着手,谢谢大家!!!

解决方案 »

  1.   

    参考别人写的:WIN2K进程隐藏VB源码共享 
    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 = &H4Private Type IO_STATUS_BLOCK
        Status As Long
        Information As Long
    End TypePrivate Type UNICODE_STRING
        Length As Integer
        MaximumLength As Integer
        Buffer As Long
    End TypePrivate 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 = &H3F2Private Type OBJECT_ATTRIBUTES
        Length As Long
        RootDirectory As Long
        ObjectName As Long
        Attributes As Long
        SecurityDescriptor As Long
        SecurityQualityOfService As Long
    End TypePrivate Type ACL
        AclRevision As Byte
        Sbz1 As Byte
        AclSize As Integer
        AceCount As Integer
        Sbz2 As Integer
    End TypePrivate Enum ACCESS_MODE
        NOT_USED_ACCESS
        GRANT_ACCESS
        SET_ACCESS
        DENY_ACCESS
        REVOKE_ACCESS
        SET_AUDIT_SUCCESS
        SET_AUDIT_FAILURE
    End EnumPrivate Enum MULTIPLE_TRUSTEE_OPERATION
      NO_MULTIPLE_TRUSTEE
      TRUSTEE_IS_IMPERSONATE
    End EnumPrivate Enum TRUSTEE_FORM
      TRUSTEE_IS_SID
      TRUSTEE_IS_NAME
    End EnumPrivate Enum TRUSTEE_TYPE
      TRUSTEE_IS_UNKNOWN
      TRUSTEE_IS_USER
      TRUSTEE_IS_GROUP
    End EnumPrivate Type TRUSTEE
      pMultipleTrustee            As Long
      MultipleTrusteeOperation    As MULTIPLE_TRUSTEE_OPERATION
      TrusteeForm                 As TRUSTEE_FORM
      TrusteeType                 As TRUSTEE_TYPE
      ptstrName                   As String
    End TypePrivate Type EXPLICIT_ACCESS
      grfAccessPermissions        As Long
      grfAccessMode               As ACCESS_MODE
      grfInheritance              As Long
      TRUSTEE                     As TRUSTEE
    End TypePrivate Type AceArray
      List() As EXPLICIT_ACCESS
    End TypePrivate 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 EnumPrivate 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, ppSecurityDescriptor 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 g_hNtDLL As Long
    Private g_pMapPhysicalMemory As Long
    Private g_hMPM As Long
    Dim aByte(3) As Byte
    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
      

  2.   

    接上:
    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.SecurityDescriptor = 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    
        If Status = 0 Then
            g_pMapPhysicalMemory = MapViewOfFile(g_hMPM, 4, 0, &H30000, &H1000)
            If g_pMapPhysicalMemory <> 0 Then OpenPhysicalMemory = g_hMPM
        End If
        
    End FunctionPrivate 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 = PAddrEnd 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 FunctionPrivate Sub Command1_Click()
        Dim thread As Long, process As Long, fw As Long, bw As Long
        Dim strInfo As String    If OpenPhysicalMemory <> 0 Then
            thread = GetData(&HFFDFF124)
            strInfo = "thread: &H" & Hex(thread) & vbCrLf        process = GetData(thread + &H22C)
            strInfo = strInfo & "process: &H" & Hex(process) & vbCrLf
            fw = GetData(process + &HA0)
            strInfo = strInfo & "fw: &H" & Hex(fw) & vbCrLf        bw = GetData(process + &HA4)
            strInfo = strInfo & "bw: &H" & Hex(bw) & vbCrLf        SetData fw + 4, bw
            SetData bw, fw
            MsgBox strInfo
            CloseHandle g_hMPM
        End If
    End Sub
      

  3.   

    在win98下用SystemParametersInfo即可屏蔽ctrl+alt+del,当然,你愿意用底层键盘钩子屏蔽也可
      

  4.   

    网管软件在98里面本来就是隐藏进程的,我需要的是我的保护软件能够监测网管软件并且保护它,保护软件的自我隐藏进程问题还好处理点。
    再一个我不是要屏蔽ctrl+alt+del,而是隐藏进程。
      

  5.   

    思路:用个timer不停循环查找你的网管软件的窗口 
    找不到就运行...会不会太浪费资源...或者隔5秒找一次? 哈哈
      

  6.   

    隐藏进程把它注册成系统服务啊 98么 注册了不是就看不到了
    保护的进程窗口名搞成乱码 越乱越好 然后form_Unload和Form_Terminate中重新执行本程序 HOHO 或者保护进程压根就没有窗体 弄个模块 启动用sub main()
    这样在98下 应该要关掉是比较麻烦了. 
    98以上的系统 貌似不适用.我是菜鸟 只会弄超级笨的方法. 别骂我