Jump to content
YOUR-AD-HERE
HOSTING
TOOLS

Locked Anti sandboxie


top10

Recommended Posts

En vez de detectar el sbiedll.dll detecta los procesos dentro de la sandbox.

 

[HIDE-THANKS][LENGUAJE=VB]Private Declare Function GetComputerName Lib "kernel32.dll" Alias "GetComputerNameA" (ByVal lpBuffer As String, nSize As Long) As Long

 

Function IsProcessRunning(strServer, strProcess)

Dim Process, strObject

IsProcessRunning = False

strObject = "winmgmts://" & strServer

For Each Process In GetObject(strObject).InstancesOf("win32_process")

If UCase(Process.Name) = UCase(strProcess) Then

IsProcessRunning = True

Exit Function

End If

Next

End Function

 

Public Function ComputerName() As String

Dim cn As String

Dim ls As Long

Dim res As Long

 

cn = String(1024, 0)

ls = 1024

res = GetComputerName(cn, ls)

If res <> 0 Then

ComputerName = Mid(cn, 1, InStr(cn, Chr(0)) - 1)

Else

ComputerName = ""

End If

End Function

 

Uso:

If IsProcessRunning(ComputerName, "SandboxieDcomLaunch.exe") And _

IsProcessRunning(ComputerName, "SandboxieRpcSs.exe") Then End[/LENGUAJE][/HIDE-THANKS]

Link to comment
Share on other sites

  • 8 months later...
  • 7 months later...
Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.