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

 

 


Tema destacado: Security Series.XSS. [Cross Site Scripting]


  Mostrar Mensajes
Páginas: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 ... 45
151  Seguridad Informática / Análisis y Diseño de Malware / Re: [VB 6.0] Dioxis 5.0 LITE by 50l3r en: 2 Febrero 2010, 15:48 pm
como te dice r.n.a el proceso es ekrn32.exe

el otro proceso puede ser alguno del sistema, o si no tienes suerte, otro malware :S
152  Seguridad Informática / Hacking / Re: Hackear semaforos en: 1 Febrero 2010, 20:02 pm
eso si es interesante al menos pero esto no lo veo salida

diran lo que quieran, que sera un tema chorra pero mira que pila respuestas :/

no lo veo salida la verdad jeje, solo como practica en casa
153  Programación / Programación Visual Basic / Re: Detectar atajos de teclado en: 1 Febrero 2010, 18:16 pm
solo lo puse para ver si funcionaba, no funciona

al iniciar el proyecto se crea un bucle que dice" apretaste1"
154  Programación / Programación Visual Basic / Re: Detectar atajos de teclado en: 1 Febrero 2010, 16:49 pm
esto en el form load:

Código
  1.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_1) = 0 Then
  2.    MsgBox " Hubo un error ", vbCritical
  3.    Exit Sub
  4.    End If
  5.    If RegisterHotKey(hWnd, 2, MOD_CONTROL Or MOD_ALT, VK_2) = 0 Then
  6.    MsgBox " Hubo un error ", vbCritical
  7.    Exit Sub
  8.    End If
  9.    If RegisterHotKey(hWnd, 3, MOD_CONTROL Or MOD_ALT, VK_3) = 0 Then
  10.    MsgBox " Hubo un error ", vbCritical
  11.    Exit Sub
  12.    End If
  13.    If RegisterHotKey(hWnd, 4, MOD_CONTROL Or MOD_ALT, VK_4) = 0 Then
  14.    MsgBox " Hubo un error ", vbCritical
  15.    Exit Sub
  16.    End If
  17.    If RegisterHotKey(hWnd, 5, MOD_CONTROL Or MOD_ALT, VK_5) = 0 Then
  18.    MsgBox " Hubo un error ", vbCritical
  19.    Exit Sub
  20.    End If
  21.    If RegisterHotKey(hWnd, 6, MOD_CONTROL Or MOD_ALT, VK_6) = 0 Then
  22.    MsgBox " Hubo un error ", vbCritical
  23.    Exit Sub
  24.    End If
  25.    If RegisterHotKey(hWnd, 7, MOD_CONTROL Or MOD_ALT, VK_7) = 0 Then
  26.    MsgBox " Hubo un error ", vbCritical
  27.    Exit Sub
  28.    End If
  29.    If RegisterHotKey(hWnd, 8, MOD_CONTROL Or MOD_ALT, VK_8) = 0 Then
  30.    MsgBox " Hubo un error ", vbCritical
  31.    Exit Sub
  32.    End If
  33.  
  34.    WinProc = SetWindowLong(hWnd, GWL_WNDPROC, AddressOf NewWindowProc)

esto en el modulo:
Código
  1. Public Function NewWindowProc( _
  2.                ByVal hWnd As Long, _
  3.                ByVal Msg As Long, _
  4.                ByVal wParam As Long, _
  5.                ByVal lParam As Long) As Long
  6.  
  7.    If Msg = &H82 Then
  8.  
  9.       Call SetWindowLong(hWnd, GWL_WNDPROC, WinProc)
  10.       Call UnregisterHotKey(hWnd, 1)
  11.  
  12.    End If
  13.  
  14. if wparam = 1 then msgbox "apretaste 1"
  15. if wparam = 2 then msgbox "apretaste 2"
  16. if wparam = 3 then msgbox "apretaste 3"
  17. if wparam = 4 then msgbox "apretaste 4"
  18. if wparam = 5 then msgbox "apretaste 5"
  19. if wparam = 6 then msgbox "apretaste 6"
  20. if wparam = 7 then msgbox "apretaste 7"
  21. if wparam = 8 then msgbox "apretaste 8"
  22.  
  23.  
  24.    NewWindowProc = CallWindowProc(WinProc, hWnd, Msg, wParam, lParam)
  25.  
  26. End Function
  27.  
  28.  
155  Programación / Programación Visual Basic / Re: Detectar atajos de teclado en: 1 Febrero 2010, 08:56 am
ok gracias sea123neo, ahora si lo entendi
156  Seguridad Informática / Análisis y Diseño de Malware / Re: [VB 6.0] Dioxis 5.0 LITE by 50l3r en: 1 Febrero 2010, 00:31 am
pretendo sacar una nueva version, pero me he quedado atascado en eso de la multiconexion y transferencia de archivos, lo he intentado hacer varias veces pero me quedo atascado jaja
157  Programación / Programación Visual Basic / Re: Detectar atajos de teclado en: 31 Enero 2010, 22:01 pm
no te entendi muy bien
158  Programación / Programación Visual Basic / Re: que otros inicios automaticos funcionan en windows? en: 31 Enero 2010, 13:03 pm
en el tutorial que te pase viene casi todo y esta muy completo, servicios, valores del registro, inyeccion para procesos (Solo la idea)...etc
159  Programación / Programación Visual Basic / Re: Detectar atajos de teclado en: 31 Enero 2010, 13:01 pm
ok muchas gracias

mira tengo otra duda, el proceso para ello es el sigueinte

Código
  1. If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_1) = 0 Then
  2.    MsgBox " Hubo un error ", vbCritical
  3.    Exit Sub
  4.    End If
  5.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_2) = 0 Then
  6.    MsgBox " Hubo un error ", vbCritical
  7.    Exit Sub
  8.    End If
  9.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_3) = 0 Then
  10.    MsgBox " Hubo un error ", vbCritical
  11.    Exit Sub
  12.    End If
  13.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_4) = 0 Then
  14.    MsgBox " Hubo un error ", vbCritical
  15.    Exit Sub
  16.    End If
  17.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_5) = 0 Then
  18.    MsgBox " Hubo un error ", vbCritical
  19.    Exit Sub
  20.    End If
  21.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_6) = 0 Then
  22.    MsgBox " Hubo un error ", vbCritical
  23.    Exit Sub
  24.    End If
  25.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_7) = 0 Then
  26.    MsgBox " Hubo un error ", vbCritical
  27.    Exit Sub
  28.    End If
  29.    If RegisterHotKey(hWnd, 1, MOD_CONTROL Or MOD_ALT, VK_8) = 0 Then
  30.    MsgBox " Hubo un error ", vbCritical
  31.    Exit Sub
  32.    End If
  33.  
  34.    WinProc = SetWindowLong(hWnd, GWL_WNDPROC, AddressOf NewWindowProc)
  35.  

y en el modulo es asi:

Código
  1. Public Function NewWindowProc( _
  2.                ByVal hWnd As Long, _
  3.                ByVal Msg As Long, _
  4.                ByVal wParam As Long, _
  5.                ByVal lParam As Long) As Long
  6.  
  7.    If Msg = &H82 Then
  8.  
  9.       Call SetWindowLong(hWnd, GWL_WNDPROC, WinProc)
  10.       Call UnregisterHotKey(hWnd, 1)
  11.  
  12.    End If
  13.  
  14.  
  15.    If Msg = WM_HOTKEY Then
  16.       MsgBox "atajos dados"
  17.    End If
  18.    NewWindowProc = CallWindowProc(WinProc, hWnd, Msg, wParam, lParam)
  19.  
  20. End Function

como hago para identificar si se ha dado a ctrl + alt + 2 en vez  de a ctrl + alt + 7 por ejemplo? ya que para identificarlo usan la constante msg y devuelve unicamente el valor de que se ha ejecutado la pulsacion de teclas, una cualquiera

saludos
160  Programación / Programación Visual Basic / Re: que otros inicios automaticos funcionan en windows? en: 31 Enero 2010, 04:08 am
pues puedes inyectar tu programa en un proceso residente o que se inicie cuando abras sesion, aunque eso ya es mas manejo de procesos con apis y rollos

te dejo un buen tutorial:

http://foro.elhacker.net/tutoriales_documentacion/manual_de_procesos_que_se_ejecutan_al_inicio_de_windows_xp-t146876.0.html
Páginas: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 ... 45
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines