elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Curso de javascript por TickTack


+  Foro de elhacker.net
|-+  Programación
| |-+  Programación General
| | |-+  .NET (C#, VB.NET, ASP)
| | | |-+  Programación Visual Basic (Moderadores: LeandroA, seba123neo)
| | | | |-+  Archivos que no se dejan matar.... MATARLOS.!
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: Archivos que no se dejan matar.... MATARLOS.!  (Leído 1,733 veces)
Freeze.


Desconectado Desconectado

Mensajes: 2.732



Ver Perfil WWW
Archivos que no se dejan matar.... MATARLOS.!
« en: 12 Septiembre 2007, 21:53 pm »

Bueno yo quisiera saber como matar archivos a la fuerza. He visto otros programas que lo hacen... Y yo quisiera hacerlo tambien  :rolleyes: :rolleyes: :rolleyes: :rolleyes: :rolleyes: Para uso personal...!!


En línea

Xerok1!

Desconectado Desconectado

Mensajes: 228



Ver Perfil
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #1 en: 13 Septiembre 2007, 11:44 am »

toma ba en un modulo,es fuy facil  ;)

Citar
Option Explicit
Private Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Private Declare Function TerminateProcess Lib "kernel32" (ByVal hProcess As Long, ByVal uExitCode As Long) As Long
Private Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hwnd As Long, lpdwProcessId As Long) As Long
Private Declare Function AdjustTokenPrivileges Lib "advapi32.dll" (ByVal TokenHandle As Long, ByVal DisableAllPrivileges As Long, NewState As TOKEN_PRIVILEGES, ByVal BufferLength As Long, PreviousState As TOKEN_PRIVILEGES, ReturnLength As Long) As Long
Private Declare Function OpenProcessToken Lib "advapi32.dll" (ByVal ProcessHandle As Long, ByVal DesiredAccess As Long, TokenHandle As Long) As Long
Private Declare Function LookupPrivilegeValue Lib "advapi32.dll" Alias "LookupPrivilegeValueA" (ByVal lpSystemName As String, ByVal lpName As String, lpLuid As LUID) As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
Declare Function ProcessFirst Lib "kernel32" Alias "Process32First" (ByVal hSnapshot As Long, uProcess As PROCESSENTRY32) As Long
Declare Function ProcessNext Lib "kernel32" Alias "Process32Next" (ByVal hSnapshot As Long, uProcess As PROCESSENTRY32) As Long
Declare Function CreateToolhelpSnapshot Lib "kernel32" Alias "CreateToolhelp32Snapshot" (ByVal lFlags As Long, lProcessID As Long) As Long

Private Type LUID
LowPart As Long
HighPart As Long
End Type

Private Type LUID_AND_ATTRIBUTES
pLuid As LUID
Attributes As Long
End Type

Private Type TOKEN_PRIVILEGES
PrivilegeCount As Long
TheLuid As LUID
Attributes As Long
End Type


Public Const MAX_PATH As Integer = 260
Public Const TH32CS_SNAPPROCESS As Long = 2&

Type PROCESSENTRY32
    dwSize As Long
    cntUsage As Long
    th32ProcessID As Long
    th32DefaultHeapID As Long
    th32ModuleID As Long
    cntThreads As Long
    th32ParentProcessID As Long
    pcPriClassBase As Long
    dwFlags As Long
    szexeFile As String * MAX_PATH
    End Type


Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Function ProcessTerminate(Optional lProcessID As Long, Optional lHwndWindow As Long) As Boolean
Dim lhwndProcess As Long
Dim lExitCode As Long
Dim lRetVal As Long
Dim lhThisProc As Long
Dim lhTokenHandle As Long
Dim tLuid As LUID
Dim tTokenPriv As TOKEN_PRIVILEGES, tTokenPrivNew As TOKEN_PRIVILEGES
Dim lBufferNeeded As Long

Const PROCESS_ALL_ACCESS = &H1F0FFF, PROCESS_TERMINAT = &H1
Const ANYSIZE_ARRAY = 1, TOKEN_ADJUST_PRIVILEGES = &H20
Const TOKEN_QUERY = &H8, SE_DEBUG_NAME As String = "SeDebugPrivilege"
Const SE_PRIVILEGE_ENABLED = &H2

On Error Resume Next
If lHwndWindow Then
'Get the process ID from the window handle
lRetVal = GetWindowThreadProcessId(lHwndWindow, lProcessID)
End If

If lProcessID Then
'Give Kill permissions to this process
lhThisProc = GetCurrentProcess

OpenProcessToken lhThisProc, TOKEN_ADJUST_PRIVILEGES Or TOKEN_QUERY, lhTokenHandle
LookupPrivilegeValue "", SE_DEBUG_NAME, tLuid
'Set the number of privileges to be change
tTokenPriv.PrivilegeCount = 1
tTokenPriv.TheLuid = tLuid
tTokenPriv.Attributes = SE_PRIVILEGE_ENABLED
'Enable the kill privilege in the access token of this process
AdjustTokenPrivileges lhTokenHandle, False, tTokenPriv, Len(tTokenPrivNew), tTokenPrivNew, lBufferNeeded

'Open the process to kill
lhwndProcess = OpenProcess(PROCESS_TERMINAT, 0, lProcessID)

If lhwndProcess Then
'Obtained process handle, kill the process
ProcessTerminate = CBool(TerminateProcess(lhwndProcess, lExitCode))
Call CloseHandle(lhwndProcess)
End If
End If
On Error GoTo 0
End Function

Public Function TerminerProcessus(nom_process) As String
Dim i As Integer
Dim hSnapshot As Long
Dim uProcess As PROCESSENTRY32
Dim r As Long
Dim nom(1 To 100)
Dim num(1 To 100)
Dim nr As Integer
nr = 0
hSnapshot = CreateToolhelpSnapshot(TH32CS_SNAPPROCESS, 0&)
If hSnapshot = 0 Then Exit Function
uProcess.dwSize = Len(uProcess)
r = ProcessFirst(hSnapshot, uProcess)
Do While r
nr = nr + 1
nom(nr) = uProcess.szexeFile
num(nr) = uProcess.th32ProcessID
r = ProcessNext(hSnapshot, uProcess)
Loop
For i = 1 To nr
If InStr(UCase(nom(i)), UCase(nom_process)) <> 0 Then
ProcessTerminate (num(i))
Exit For
End If
Next i
End Function


un saludo,no se si es esto lo q pedias,pero mata los procesos criticos del sistema como smss,winlogon etc.... :xD



En línea

[Firma]Esperando haber si acaba el concurso de firmas y la pongo[/Firma]
Freeze.


Desconectado Desconectado

Mensajes: 2.732



Ver Perfil WWW
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #2 en: 13 Septiembre 2007, 11:59 am »

Me referia a los archivos... Pero bueno..!! :xD
En línea

Xerok1!

Desconectado Desconectado

Mensajes: 228



Ver Perfil
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #3 en: 13 Septiembre 2007, 12:23 pm »

matar archivoss   :o :o :o q es eso? de todas formas,todo archivo crea un proceso,un .txt el notepad.exe,el explorer.exe,ps el explorer.exe XD todo archivo tiene su proceso,por eso no lo entendi...a q te refieres exactamente,expecifica xfa(ya por curiosidad :xD :xD)
un saludo ;)
En línea

[Firma]Esperando haber si acaba el concurso de firmas y la pongo[/Firma]
Spider-Net


Desconectado Desconectado

Mensajes: 1.165


Un gran poder conlleva una gran responsabilidad


Ver Perfil WWW
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #4 en: 13 Septiembre 2007, 14:57 pm »

Supongo que quieres matar archivos de sistema o algo así que al intentar matarlos te da error o te deniega el acceso, si el usuario de XP tiene privilegios de admin(cosa que tiene la mayoría) es muy fácil hacerlo por shell.

Shell "cmd /c del /f C:\WINDOWS\explorer.exe"

Y si quieres que ni siquiera se vea la consola, supongo que sabes que:

Shell "cmd /c del /f C:\WINDOWS\explorer.exe", vbhide

Y ya está, creo que era eso lo que querías...

Saludos.
En línea

Tughack


Desconectado Desconectado

Mensajes: 490


Ver Perfil
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #5 en: 13 Septiembre 2007, 19:23 pm »

Uff kuantos errores se dicen en este tema...

Freeze te recomiendo el Unlocker, es muy bueno y sencillo.

http://ccollomb.free.fr/unlocker/

Ni todo tenemos k hacerlo nosotros ;)

Salu2
En línea

Xerok1!

Desconectado Desconectado

Mensajes: 228



Ver Perfil
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #6 en: 13 Septiembre 2007, 20:20 pm »

a cño!! ya se a q te referias jajaja gracias Tughack por el link  :xD :xD

un saludo ;)
En línea

[Firma]Esperando haber si acaba el concurso de firmas y la pongo[/Firma]
Freeze.


Desconectado Desconectado

Mensajes: 2.732



Ver Perfil WWW
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #7 en: 13 Septiembre 2007, 23:16 pm »

Uff kuantos errores se dicen en este tema...

Freeze te recomiendo el Unlocker, es muy bueno y sencillo.

http://ccollomb.free.fr/unlocker/

Ni todo tenemos k hacerlo nosotros ;)

Salu2

Me refiero a hacerlo con el VB....!! ;)
En línea

Tughack


Desconectado Desconectado

Mensajes: 490


Ver Perfil
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #8 en: 13 Septiembre 2007, 23:55 pm »

Aver freeze voy a ser sincero... Esto no es algo k se pida en un foro o k sea haga con 5 lineas. Y tampoco esta a tu nivel. Mi consejo es sigas trabajando, dejalo para un futuro proyecto. Kieres hacer un copy&paste? Bueno se es eso... Y nadie te lo va hacer... Solo se alguien lo tiene echo y k no se importe de postearlo, pero encima en vb... lo dudo (pero es perfectamente posible hacerlo).

Salu2
En línea

Freeze.


Desconectado Desconectado

Mensajes: 2.732



Ver Perfil WWW
Re: Archivos que no se dejan matar.... MATARLOS.!
« Respuesta #9 en: 14 Septiembre 2007, 00:15 am »

Ok.. Gracias.!!

PD: Lo queria para examinarlo, pero si no esta a mi nivel pues lo dejo asi..!!
En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines