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

 

 


Tema destacado: Introducción a la Factorización De Semiprimos (RSA)


+  Foro de elhacker.net
|-+  Programación
| |-+  Programación General
| | |-+  .NET (C#, VB.NET, ASP)
| | | |-+  Programación Visual Basic (Moderadores: LeandroA, seba123neo)
| | | | |-+  duda acerca de los servicios :P
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] 2 Ir Abajo Respuesta Imprimir
Autor Tema: duda acerca de los servicios :P  (Leído 4,604 veces)
x64core


Desconectado Desconectado

Mensajes: 1.908


Ver Perfil
duda acerca de los servicios :P
« en: 13 Agosto 2011, 21:23 pm »

buenas cree este tema relacionado a este :P

http://foro.elhacker.net/analisis_y_diseno_de_malware/manejar_sevicios_desde_vb-t123518.0.html

tengo una duda de como crear un servicio e visto que estan las funciones pero creo que me estoy equivocando en algo :P o no funciona en win 7 ???

todo el codigo de vb lo agrego a un modulo y despues llamo a la funcion "main" luego en esa funcion agrego la funcion "ServiceInstall" que creo que en los paremtros me quivoco noce :P yo escribo el nombre de la PC o es el nombre del usuario del que se esta ocupando? luego el segundo parametro es el nombre del servicio no :P y el tercero la ruta del EXE yo escribo la ruta del notepad :P
bueno si hay alguien que enseñe como funciona el codigo gracias  ;D


En línea

ThunderCls


Desconectado Desconectado

Mensajes: 455


Coder | Reverser | Gamer


Ver Perfil WWW
Re: duda acerca de los servicios :P
« Respuesta #1 en: 15 Agosto 2011, 17:47 pm »

En que te falla y que error te devuelve?
El prototipo de la funcion es:

Código
  1. ServiceInstall(ComputerName As String, ServiceName As String, Path As String)

El primer parametro es el nombre de la PC (Segun la MSDN - http://msdn.microsoft.com/en-us/library/ms684323(v=vs.85).aspx):
The name of the target computer. If the pointer is NULL or points to an empty string, the function connects to the service control manager on the local computer.

El segundo y el tercer parametro estan relacionados con "CreateService" (http://msdn.microsoft.com/en-us/library/ms682450(v=vs.85).aspx). Por lo que estuve viendo en la implementacion de la funcion, se utiliza el mismo parametro de funcion "ServiceName" para los parametros de API "lpServiceName" y "lpDisplayName" que no necesariamente tienen que ser iguales...bueno, es solo una aclaracion.
Saludos


En línea

-[ "…I can only show you the door. You're the one that has to walk through it." – Morpheus (The Matrix) ]-
http://reversec0de.wordpress.com
https://github.com/ThunderCls/
x64core


Desconectado Desconectado

Mensajes: 1.908


Ver Perfil
Re: duda acerca de los servicios :P
« Respuesta #2 en: 15 Agosto 2011, 19:14 pm »

pues yo queria saber como usar las funciones osea como instalar digamos el notepad como servicio :P
yo e investigado un poco pero no logro hacerlo :/


(e hecho una copia del notepad al C )
Código
  1. Sub Main()
  2. Dim ComputerN As String
  3. Dim LenC As Long
  4.  
  5. ComputerN = Space(MAX_COMPUTERNAME_LENGTH)
  6. LenC = MAX_COMPUTERNAME_LENGTH + 1
  7. GetComputerName ComputerN, LenC
  8. ComputerN = Left$(ComputerN, LenC)
  9.  
  10. ServiceInstall ComputerN, "NOTEPAD", "C:\NOTEPAD.exe"
  11.  
  12.    'ServiceStop "", "ipodservice"
  13.    'ServiceStart "", "ipodservice"
  14.    'ServicePause "", "ipodservice"
  15.    'ServiceInstall "", "ipodservice",
  16.    'ServiceUnInstall "", "ipodservice"
  17.    'MsgBox ServiceStatus("", "ipodservice")
  18. End Sub

y cuando llamo a la funcion de instalar el servicio no me instala nada :/ yo uso window 7 noce si eso puede afectar aunq en la msdn dice que desde 98 creo :P en adelanet :P es mas e puesto esta linea despues de la llamada a la API createservice

Código
  1. If Err.LastDllError <> 0 Then Debug.Print Error(Err.LastDllError)

para saber cual es el error y me devuelve esto:

"Error definido por la aplicación o el objeto"

:P
En línea

x64core


Desconectado Desconectado

Mensajes: 1.908


Ver Perfil
Re: duda acerca de los servicios :P
« Respuesta #3 en: 2 Septiembre 2011, 05:24 am »

:P sale buenas e logrado instalar un servicio :P
con este codigo:


Código
  1. Public Function Service_Install(SVC_NAME As String, SVC_DESC As String) As Boolean
  2.    Dim lHManager           As Long
  3.    Dim lHService           As Long
  4.    Dim lResult             As Long
  5.    Dim tStatus             As SERVICE_STATUS
  6.    Dim sSvcPath            As String
  7.    Dim sAccount            As String
  8.  
  9. On Error GoTo Handler
  10.    sSvcPath = App.Path + "\" & SVC_NAME
  11.    sAccount = "LocalSystem"
  12.    lHManager = OpenSCManager(vbNullString, vbNullString, SC_MANAGER_CREATE_SERVICE)
  13.    lResult = CreateService(lHManager, SVC_NAME, SVC_DESC, SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, SERVICE_DEMAND_START, SERVICE_ERROR_NORMAL, sSvcPath, vbNullString, vbNullString, vbNullString, sAccount, vbNullString)
  14.    If Not lResult = 0 Then
  15.        Service_Install = True
  16.    Else
  17.        GoTo Handler
  18.    End If
  19.    CloseServiceHandle lHManager
  20. On Error GoTo 0
  21. Exit Function
  22.  
  23. Handler:
  24.    If Not lHManager = 0 Then CloseServiceHandle lHManager
  25. End Function
  26.  
  27.  
  28. Public Function Service_StartUp(SVC_NAME As String, svcStartType As eServiceStartType) As Boolean
  29.    Dim lHManager           As Long
  30.    Dim lHService           As Long
  31.    Dim lResult             As Long
  32.  
  33. On Error GoTo Handler
  34.    lHManager = OpenSCManager(vbNullString, vbNullString, SC_MANAGER_CONNECT)
  35.    lHService = OpenService(lHManager, SVC_NAME, SERVICE_CHANGE_CONFIG)
  36.    lResult = ChangeServiceConfig(lHService, SERVICE_NO_CHANGE, svcStartType, SERVICE_NO_CHANGE, vbNullString, vbNullString, 0&, vbNullString, vbNullString, vbNullString, vbNullString)
  37.    If Not lResult = 0 Then Service_StartUp = True
  38.    CloseServiceHandle lHService
  39.    CloseServiceHandle lHManager
  40. On Error GoTo 0
  41. Exit Function
  42.  
  43. Handler:
  44.    If Not lHService = 0 Then CloseServiceHandle lHService
  45.    If Not lHManager = 0 Then CloseServiceHandle lHManager
  46. End Function
  47.  

y lo utilizo asi:


Código
  1. If Service_Install(App.EXEName & ".exe", "EJEMPLO SERVICIO") Then
  2.    Debug.Print Service_StartUp(App.EXEName & ".exe", START_AUTO)
  3. Else
  4.    Debug.Print "SVC NOT"
  5. End If
  6.  

compilo el proyecto y lo ejecuto, me instala el servicio el proceso de programa aparece como un proceso normal en el admin de tareas, en la pestaña de servicios lo encuentro instalado:


pero al parecer no esta iniciado ( claro no tiene la funcion para ser iniciado ) luego lo inicio manualmente y me dice esto:


y luego apago y vuelvo a encender y no esta iniciado el servicio
alguien me puede ayudar? :( :P


 pero ahora el problema es que no me inicia el servicio :P
En línea

Elemental Code


Desconectado Desconectado

Mensajes: 622


Im beyond the system


Ver Perfil
Re: duda acerca de los servicios :P
« Respuesta #4 en: 2 Septiembre 2011, 22:30 pm »

que programa estas poniendo como servicio.?
Cualquier programa se puede poner como servicio?
En línea

I CODE FOR $$$
Programo por $$$
Hago tareas, trabajos para la facultad, lo que sea en VB6.0

Mis programas
raul338


Desconectado Desconectado

Mensajes: 2.633


La sonrisa es la mejor forma de afrontar las cosas


Ver Perfil WWW
Re: duda acerca de los servicios :P
« Respuesta #5 en: 3 Septiembre 2011, 01:07 am »

Cualquier programa se puede, pero al iniciarlo el programa debe "terminar" la llamada devolviendo un código antes de un tiempo determinado, como hacerlo, no sé :xD
En línea

x64core


Desconectado Desconectado

Mensajes: 1.908


Ver Perfil
Re: duda acerca de los servicios :P
« Respuesta #6 en: 3 Septiembre 2011, 02:24 am »

que programa estas poniendo como servicio.?
Cualquier programa se puede poner como servicio?

bueno yo hice un programa sin interfas ( form ) porque lei en algun sitio no recuerdo bien que los servicios no deben de tener GUI :P entonces hice un medio hook para detectar los pendrive :P y me pasa ese problema :P

Cualquier programa se puede, pero al iniciarlo el programa debe "terminar" la llamada devolviendo un código antes de un tiempo determinado, como hacerlo, no sé :xD

pues ahora que lo dices raul338 cuando inicio el servicio instalado con codigo el programa creado para iniciar el servicio se cuelga :P
debe ser eso que dices :P y luego hice un programa normal que crea 100 archivos de texto en una X carpeta ( todo eso esta en el sub main del modulo porque no les agrego form ) luego de comprobar que se crearon los 100 archivos termina el sub main del modulo y finaliza el programa y el otro programa que llamo a la funcion para inciar el servicio noce cuelga :P
bueno espero que alguien si pueda

« Última modificación: 3 Septiembre 2011, 03:14 am por Raul100 » En línea

BlackZeroX
Wiki

Desconectado Desconectado

Mensajes: 3.158


I'Love...!¡.


Ver Perfil WWW
Re: duda acerca de los servicios :P
« Respuesta #7 en: 3 Septiembre 2011, 21:10 pm »

.
http://foro.elhacker.net/analisis_y_diseno_de_malware/manejar_sevicios_desde_vb-t123518.0.html

En el mismo enlace trae un ejemplo en lenguaje C... solo traducelo.

Dulces Lunas!¡.
En línea

The Dark Shadow is my passion.
BlackZeroX
Wiki

Desconectado Desconectado

Mensajes: 3.158


I'Love...!¡.


Ver Perfil WWW
Re: duda acerca de los servicios :P
« Respuesta #8 en: 3 Septiembre 2011, 21:50 pm »

.
Aqui te dejo un servicio en vb6 es el que te dige que tradujeras, solo le faltan las constantes, y la verdad ya me dio weba buscarlas asi que aqui te lo dejo.

SOLO LO TRADUJE JAMAS LO PROBE... si puedes corregir los errores adelante si no avisa.

Va en un modulo X...

Código
  1.  
  2. Option Explicit
  3.  
  4. Private Const NO_ERROR = 0
  5.  
  6. Private Const SERVICE_WIN32_OWN_PROCESS = &H10&
  7. Private Const SERVICE_WIN32_SHARE_PROCESS = &H20&
  8. Private Const SERVICE_WIN32 = SERVICE_WIN32_OWN_PROCESS + _
  9.                              SERVICE_WIN32_SHARE_PROCESS
  10. Private Const SERVICE_ACCEPT_STOP = &H1
  11. Private Const SERVICE_ACCEPT_PAUSE_CONTINUE = &H2
  12. Private Const SERVICE_ACCEPT_SHUTDOWN = &H4
  13. Private Const SC_MANAGER_CONNECT = &H1
  14. Private Const SC_MANAGER_CREATE_SERVICE = &H2
  15. Private Const SC_MANAGER_ENUMERATE_SERVICE = &H4
  16. Private Const SC_MANAGER_LOCK = &H8
  17. Private Const SC_MANAGER_QUERY_LOCK_STATUS = &H10
  18. Private Const SC_MANAGER_MODIFY_BOOT_CONFIG = &H20
  19. Public Const STANDARD_RIGHTS_REQUIRED = &HF0000
  20. Private Const SERVICE_QUERY_CONFIG = &H1
  21. Private Const SERVICE_CHANGE_CONFIG = &H2
  22. Private Const SERVICE_QUERY_STATUS = &H4
  23. Private Const SERVICE_ENUMERATE_DEPENDENTS = &H8
  24. Private Const SERVICE_START = &H10
  25. Private Const SERVICE_STOP = &H20
  26. Private Const SERVICE_PAUSE_CONTINUE = &H40
  27. Private Const SERVICE_INTERROGATE = &H80
  28. Private Const SERVICE_USER_DEFINED_CONTROL = &H100
  29. Private Const SERVICE_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED Or _
  30.                                    SERVICE_QUERY_CONFIG Or _
  31.                                    SERVICE_CHANGE_CONFIG Or _
  32.                                    SERVICE_QUERY_STATUS Or _
  33.                                    SERVICE_ENUMERATE_DEPENDENTS Or _
  34.                                    SERVICE_START Or _
  35.                                    SERVICE_STOP Or _
  36.                                    SERVICE_PAUSE_CONTINUE Or _
  37.                                    SERVICE_INTERROGATE Or _
  38.                                     SERVICE_USER_DEFINED_CONTROL)
  39. Private Const SERVICE_DEMAND_START As Long = &H3
  40. Private Const SERVICE_ERROR_NORMAL As Long = &H1
  41. ' Private Enum SERVICE_CONTROL
  42. Private Const SERVICE_CONTROL_STOP = &H1
  43. Private Const SERVICE_CONTROL_PAUSE = &H2
  44. Private Const SERVICE_CONTROL_CONTINUE = &H3
  45. Private Const SERVICE_CONTROL_INTERROGATE = &H4
  46. Private Const SERVICE_CONTROL_SHUTDOWN = &H5
  47. ' End Enum
  48. ' Private Enum SERVICE_STATE
  49. Private Const SERVICE_STOPPED = &H1
  50. Private Const SERVICE_START_PENDING = &H2
  51. Private Const SERVICE_STOP_PENDING = &H3
  52. Private Const SERVICE_RUNNING = &H4
  53. Private Const SERVICE_CONTINUE_PENDING = &H5
  54. Private Const SERVICE_PAUSE_PENDING = &H6
  55. Private Const SERVICE_PAUSED = &H7
  56. ' End Enum
  57.  
  58.  
  59. 'typedef struct _SERVICE_TABLE_ENTRY {
  60. '  LPTSTR                  lpServiceName;
  61. '  LPSERVICE_MAIN_FUNCTION lpServiceProc;
  62. '} SERVICE_TABLE_ENTRY, *LPSERVICE_TABLE_ENTRY;
  63. 'http://msdn.microsoft.com/en-us/library/ms686001%28v=vs.85%29.aspx
  64. Type SERVICE_TABLE_ENTRY
  65.    lpServiceName   As String
  66.    lpServiceProc   As Long
  67. End Type
  68.  
  69. 'BOOL WINAPI StartServiceCtrlDispatcher(
  70. '  __in  const SERVICE_TABLE_ENTRY *lpServiceTable
  71. ');
  72. 'http://msdn.microsoft.com/en-us/library/ms686324%28v=vs.85%29.aspx
  73. Private Declare Function StartServiceCtrlDispatcher Lib "advapi32.dll" Alias "StartServiceCtrlDispatcherA" (lpServiceStartTable As SERVICE_TABLE_ENTRY) As Long
  74.  
  75. 'typedef struct _SERVICE_STATUS {
  76. '  DWORD dwServiceType;
  77. '  DWORD dwCurrentState;
  78. '  DWORD dwControlsAccepted;
  79. '  DWORD dwWin32ExitCode;
  80. '  DWORD dwServiceSpecificExitCode;
  81. '  DWORD dwCheckPoint;
  82. '  DWORD dwWaitHint;
  83. '} SERVICE_STATUS, *LPSERVICE_STATUS;
  84. 'http://msdn.microsoft.com/en-us/library/ms685996%28VS.85%29.aspx
  85. Type SERVICE_STATUS
  86.    dwServiceType               As Long
  87.    dwCurrentState              As Long
  88.    dwControlsAccepted          As Long
  89.    dwWin32ExitCode             As Long
  90.    dwServiceSpecificExitCode   As Long
  91.    dwCheckPoint                As Long
  92.    dwWaitHint                  As Long
  93. End Type
  94.  
  95. 'SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandler(
  96. '  __in  LPCTSTR lpServiceName,
  97. '  __in  LPHANDLER_FUNCTION lpHandlerProc
  98. ');
  99. 'http://msdn.microsoft.com/en-us/library/ms685054%28VS.85%29.aspx
  100. Public Declare Function RegisterServiceCtrlHandler Lib "advapi32.dll" Alias "RegisterServiceCtrlHandlerA" (ByVal lpServiceName As String, ByVal lpHandlerProc As Long) As Long
  101.  
  102. 'void WINAPI OutputDebugString(
  103. '  __in_opt  LPCTSTR lpOutputString
  104. ');
  105. 'http://msdn.microsoft.com/en-us/library/aa363362%28VS.85%29.aspx
  106. Public Declare Sub OutputDebugString Lib "kernel32.dll" Alias "OutputDebugStringA" (ByVal lpServiceTable As String)
  107.  
  108. 'BOOL WINAPI SetServiceStatus(
  109. '  __in  SERVICE_STATUS_HANDLE hServiceStatus,
  110. '  __in  LPSERVICE_STATUS lpServiceStatus
  111. ');
  112. 'http://msdn.microsoft.com/en-us/library/ms686241%28VS.85%29.aspx
  113. Public Declare Function SetServiceStatus Lib "advapi32.dll" (ByVal hServiceStatus As Long, ByVal lpServiceStatus As Long) As Long
  114.  
  115. 'DWORD WINAPI GetLastError(void);
  116. 'http://msdn.microsoft.com/en-us/library/ms679360%28v=VS.85%29.aspx
  117. Public Declare Function GetLastError Lib "kernel32.dll" () As Long
  118.  
  119. Dim MyServiceStatus             As SERVICE_STATUS
  120. Dim MyServiceStatusHandle       As Long
  121.  
  122. Public Function getLPFunc(ByVal lpFunc As Long) As Long
  123.    getLPFunc = lpFunc
  124. End Function
  125.  
  126. Sub main()
  127. Dim DispatchTable(1) As SERVICE_TABLE_ENTRY
  128.    DispatchTable(0).lpServiceName = "MyService"
  129.    DispatchTable(0).lpServiceProc = getLPFunc(AddressOf MyServiceStart)
  130.    DispatchTable(1).lpServiceName = vbNullString
  131.    DispatchTable(1).lpServiceProc = &H0
  132.    If (Not StartServiceCtrlDispatcher(DispatchTable(0))) Then
  133.        OutputDebugString " [MY_SERVICE] StartServiceCtrlDispatcher " & GetLastError
  134.    End If
  135. End Sub
  136.  
  137. Public Function MyServiceStart(ByVal lCantArg As Long, ByVal lpArgv As Long)
  138. Dim status          As Long
  139. Dim SpecificError   As Long
  140.  
  141.    MyServiceStatus.dwServiceType = SERVICE_WIN32
  142.    MyServiceStatus.dwCurrentState = SERVICE_START_PENDING
  143.    MyServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP Or SERVICE_ACCEPT_PAUSE_CONTINUE
  144.    MyServiceStatus.dwWin32ExitCode = 0
  145.    MyServiceStatus.dwServiceSpecificExitCode = 0
  146.    MyServiceStatus.dwCheckPoint = 0
  147.    MyServiceStatus.dwWaitHint = 0
  148.  
  149.    MyServiceStatusHandle = RegisterServiceCtrlHandler("MyService", getLPFunc(AddressOf MyServiceCtrlHandler))
  150.  
  151.    If (MyServiceStatusHandle = &H0) Then
  152.        status = GetLastError()
  153.        OutputDebugString (" [MY_SERVICE] RegisterServiceCtrlHandler failed " & status)
  154.        Exit Function
  155.    End If
  156.  
  157.    status = MyServiceInitialization(lCantArg, lpArgv, SpecificError)
  158.    If (Not (status = NO_ERROR)) Then
  159.        MyServiceStatus.dwCurrentState = SERVICE_STOPPED
  160.        MyServiceStatus.dwCheckPoint = 0
  161.        MyServiceStatus.dwWaitHint = 0
  162.        MyServiceStatus.dwWin32ExitCode = status
  163.        MyServiceStatus.dwServiceSpecificExitCode = SpecificError
  164.        SetServiceStatus MyServiceStatusHandle, ByVal VarPtr(MyServiceStatus)
  165.        Exit Function
  166.    End If
  167.    MyServiceStatus.dwCurrentState = SERVICE_RUNNING
  168.    MyServiceStatus.dwCheckPoint = 0
  169.    MyServiceStatus.dwWaitHint = 0
  170.  
  171.    If (Not SetServiceStatus(MyServiceStatusHandle, ByVal VarPtr(MyServiceStatus))) Then
  172.        status = GetLastError()
  173.        OutputDebugString (" [MY_SERVICE] RegisterServiceCtrlHandler error " & status)
  174.    End If
  175.  
  176.    OutputDebugString (" [MY_SERVICE] Returning the Main Thread ")
  177.  
  178. End Function
  179.  
  180. Public Function MyServiceInitialization(ByVal lCantArg As Long, ByVal lpArgv As Long, ByRef SpecificError As Long)
  181. Dim ff      As Long
  182.    ff = FreeFile
  183.    Open "c:\Servicio en VB6.txt" For Binary As ff
  184.        Put ff, , "Hola mundo desde un servicio creado en vb6"
  185.    Close ff
  186.    MyServiceInitialization = 0
  187. End Function
  188.  
  189. Public Sub MyServiceCtrlHandler(ByVal Opcode As Long)
  190. Dim status      As Long
  191.    Select Case (Opcode)
  192.        Case SERVICE_CONTROL_PAUSE:
  193.            MyServiceStatus.dwCurrentState = SERVICE_PAUSED
  194.        Case SERVICE_CONTROL_CONTINUE:
  195.            MyServiceStatus.dwCurrentState = SERVICE_RUNNING
  196.        Case SERVICE_CONTROL_STOP:
  197.            MyServiceStatus.dwWin32ExitCode = 0
  198.            MyServiceStatus.dwCurrentState = SERVICE_STOPPED
  199.            MyServiceStatus.dwCheckPoint = 0
  200.            MyServiceStatus.dwWaitHint = 0
  201.  
  202.            If (Not SetServiceStatus(MyServiceStatusHandle, ByVal VarPtr(MyServiceStatus))) Then
  203.                status = GetLastError()
  204.                OutputDebugString " [MY_SERVICE] SetServiceStatus error " & status
  205.            End If
  206.  
  207.            OutputDebugString " [MY_SERVICE] Leaving MyService"
  208.            Exit Sub
  209.  
  210.        Case SERVICE_CONTROL_INTERROGATE:
  211.        Case Else
  212.            OutputDebugString " [MY_SERVICE] Unrecognized opcode " & Opcode
  213.    End Select
  214.    If (Not SetServiceStatus(MyServiceStatusHandle, ByVal VarPtr(MyServiceStatus))) Then
  215.      status = GetLastError()
  216.      OutputDebugString " [MY_SERVICE] SetServiceStatus error " & status
  217.    End If
  218. End Sub
  219.  
  220.  

Sangriento Infirno Lunar!¡.
« Última modificación: 3 Septiembre 2011, 22:09 pm por BlackZeroX▓▓▒▒░░ » En línea

The Dark Shadow is my passion.
x64core


Desconectado Desconectado

Mensajes: 1.908


Ver Perfil
Re: duda acerca de los servicios :P
« Respuesta #9 en: 3 Septiembre 2011, 22:23 pm »

gracias tio por tomarte el tiempo de traducirlo y ayudar :) pero ya le probado :P y no funka :P lo e probado usando mi logica :P en "myservice" escribi el servicio que queria ejecutar y no anda hace todo el proceso del sub main y luego finaliza :P no llama a la funcion callback ( creo que asi se le llama :P )  que veo ahi :P
En línea

Páginas: [1] 2 Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
acerca de ...denegacion de servicios localmente( o algo asi)
Programación Visual Basic
..::[ thekingkid ]::.. 0 1,412 Último mensaje 31 Diciembre 2005, 04:41 am
por ..::[ thekingkid ]::..
Duda acerca de DLL
Programación Visual Basic
Krnl64 1 1,792 Último mensaje 30 Mayo 2006, 07:43 am
por byebye
Rumores acerca de Windows 8: nuevos servicios al descubierto
Noticias
wolfbcn 2 1,942 Último mensaje 9 Mayo 2011, 17:56 pm
por Randomize
Duda sobre servicios VPN
Seguridad
megabity 2 1,886 Último mensaje 28 Enero 2015, 00:16 am
por megabity
Duda diseño para servicios/productos.
Bases de Datos
1304654 0 2,194 Último mensaje 26 Agosto 2015, 17:32 pm
por 1304654
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines