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

 

 


Tema destacado: Usando Git para manipular el directorio de trabajo, el índice y commits (segunda parte)


  Mostrar Mensajes
Páginas: 1 ... 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 [43] 44
421  Seguridad Informática / Seguridad / Re: (Problema) Anomalías extrañas y fantasmales en Win7 en: 18 Febrero 2016, 00:48 am
Bueno como indicas no veo procesos extraños...

Supongo que esta entrada corresponde al filtro puesto por el firewall que tienes correcto?
Borrale los siguientes huerfanos:
Veo tambien que hay muchas llamadas a archivos .dll, prueba pasandole el vundofix

Saludos
La entrada no corresponde a ningún filtro de firewall, es del actual servidor proxy que tengo configurado (a pesar de no estar activado puesto que la entrada en esa misma clave llamada ProxyEnabled está en 0).
Me podrías explicar exactamente cómo "borrar" esas líneas? No sé usar muy bien el HijackThis, lo descargué apenas me lo pediste.
Y tal como lo hice con el HijackThis voy a ver cómo va con el vundofix aunque no sepa que es exactamente.
422  Seguridad Informática / Seguridad / Advertencia de seguridad Chrome en: 18 Febrero 2016, 00:39 am
Al ingresar en http://download.aircrack-ng.org/aircrack-ng-1.2-rc4-win.zip , que es el instalador de aircrack-ng 1.2 blablabla, tengo una advertencia de seguridad por parte de Chrome que dice que hay atacantes que intentan afectar la navegación, etc.
La cuestión es que quería asegurarme de que esta advertencia se produjo porque los de Google no quieren que descargue esto y no porque realmente pasa lo que ellos dicen.

Por las dudas...  :rolleyes:
423  Seguridad Informática / Wireless en Windows / Re: Problema intentando hackear una red con la CMD en: 18 Febrero 2016, 00:27 am
Entiendo, en el momento en que publiqué esto ya sabía todo lo que dijiste, excepto que no estaba tan seguro de que no se podía hackear con la CMD. Perdón por publicar cosas inútiles como ésta.
424  Seguridad Informática / Wireless en Windows / Problema intentando hackear una red con la CMD en: 18 Febrero 2016, 00:08 am
Intentaba hackear una red usando la CMD según este vídeo (https://www.youtube.com/watch?v=sFuSMYIDVw0)
cuando se me presentó el siguiente problema:
En la interfaz de la conexión inalámbrica, el perfil de la red que intento hackear no existe.
Noté al ver todos los perfiles que los perfiles se crean al conectarse la pc a una red.

Saben qué? Les digo lo que realmente pienso con la no poca experiencia que tengo. No sé nada sobre hackear, pero esto me parece una pelotudez total. Lo más probable de todo es que no funcione. Pero lo hago para ver si existe la posibilidad de conseguir una contraseña de una red Wi-Fi sin instalar nada.

No tengo ganas ni tiempo para intentar crear el perfil (solución que tampoco tiene mucha posibilidad de funcionar), pero si alguien puede decirme cómo crearlo, o mejor, hackear usando el método del video, o mejor, hackear (en serio) con la CMD, estaría buenísimo.
425  Programación / Scripting / Pequeño problema en un script de batch en: 17 Febrero 2016, 23:29 pm
La cuestión es que me pidieron que hiciera un virus falso disimulándolo con un hack de League of Legends. El problema se produjo en uno de los subcomponentes de un módulo cuya función es mostrar una serie de mensajes. Lo que falla es el sistema que se encarga de esperar cierto tiempo antes de mostrar el siguiente mensaje (que es básicamente todo menos las primeras 5 líneas y los comandos ECHO, TITLE y COLOR)
Nótese que conozco el comando TIMEOUT, pero intento no usarlo porque muestra diálogos ("Esperando x segundos, presione Ctrl+C para omitir...") lo cual arruinaría la credibilidad del módulo entero.
Código
  1. @echo off
  2. mode con cols=60 lines=5
  3. :start
  4. title Hack LoL 1.42.109
  5. color f9
  6. cls
  7. echo    Entrando en la base de datos de League of Legends...
  8. set restore=1
  9. set time=400
  10. goto delay
  11. :1
  12. cls
  13. echo  Acceso permitido. Saboteando sistema de atribs jugador...
  14. set restore=2
  15. set time=400
  16. goto delay
  17. :2
  18. cls
  19. echo             Preparando archivos del hack...
  20. set restore=3
  21. set time=300
  22. goto delay
  23. :3
  24. cls
  25. echo             Aplicando hack "vida infinita"...
  26. set restore=4
  27. set time=500
  28. goto delay
  29. :4
  30. title Ventana Misteriosa
  31. color 0c
  32. cls
  33. echo      En serio pensaste que esto era un hack de LoL?
  34. set restore=5
  35. set time=200
  36. goto delay
  37. :5
  38. cls
  39. echo                        Bueno...
  40. set restore=6
  41. set time=100
  42. goto delay
  43. :6
  44. cls
  45. echo                          No.
  46. set restore=7
  47. set time=100
  48. goto delay
  49. :7
  50. start extrarealism.exe
  51. start irlcounter.exe
  52. ::-------------------------------------------------
  53. :delay
  54. set tick=0
  55. :delay1
  56. set /a tick=%tick% + 1
  57. if %tick%==%time% goto %restore%
  58. goto delay1
  59.  
Tengan en cuenta que el rendimiento de la computadora víctima es significativamente mayor que el de la mía (8GB RAM vs 2GB RAM), por lo tanto los comandos que ejecuta la CMD se ejecutan rapidísimo.
El problema es el siguiente: La tasa de ascenso de la variable "tick" es mucho mayor debido a lo explicado en el párrafo anterior, y como el script está programado para mostrar el mensaje siguiente cuando "tick" llegue a "time", en la computadora víctima los mensajes se muestran tan rápido que no da tiempo a leer siquiera.
Tengo otras variantes de sistemas de este tipo, pero no funciona la mayoría y hay uno solo que funciona pero es muy inestable (no lo incluyo para no hacer demasiado largo el post, pero si lo quieren pídanmelo).
Lo que necesito es que alguien que tenga un poco de energía mental y no le haya explotado el cerebro como a mí brinde una variante funcional que no dependa del rendimiento del sistema.
Gracias por su esfuerzo mental de antemano.
426  Foros Generales / Dudas Generales / Re: Autorun en: 17 Febrero 2016, 22:01 pm
Podrías simplemente no hacer que el pendrive tenga algo que haga ejecutar un archivo sino viceversa, algo en la computadora en la que insertás el pendrive que haga ejecutar el archivo en el pendrive. O si querés esconder el archivo a ejecutar, hacés que el algo en la computadora ejecute un archivo en el pendrive que ejecute el otro archivo que querés esconder.

Di más vueltas que oreja xD
427  Seguridad Informática / Seguridad / Re: Duda sobre phishing. en: 17 Febrero 2016, 16:14 pm
Revisá si el "candado" de al lado de la dirección web está verde, y hacele clic para leer algunos datos.
Siempre que haya sospechas, buscá el sitio en internet o analizalo en www.virustotal.com
Evitá hacer clic en anuncios de esos engañosos que tienen solamente un botón de descargar. La estrategia de éstos es que te los confundas con el botón de descargar lo que sea que querés descargar, pero en realidad son ofensivos para tu computadora y tu privacidad.
Acordate siempre de que el phishing siempre implica (requiere) cualquier tipo de interacción con el usuario, por lo tanto si no interactuás de ninguna manera, se reduce considerablemente el riesgo.
Lo que sí puede pasar es que caigas en otro tipo de amenazas al entrar solamente en un sitio, ero eso ya no entra en phishing.
428  Seguridad Informática / Seguridad / Re: DUDA sobre Seguridad Informática en: 17 Febrero 2016, 16:03 pm
Estás haciendo una pregunta como ésta y te considerás un newbie?
Deberías estar orgulloso de lo que sabés sobre informática...
(sólo quería resaltar eso, perdón por no responder a la pregunta)
429  Seguridad Informática / Seguridad / Re: duda con e-mail fraudulento en: 17 Febrero 2016, 15:49 pm
Yo para esas cosa uso siempre el mismo criterio, que es el que muchos usan y casi siempre el más efectivo, y es el siguiente.

Si no lo solicitaste de alguna manera, no lo abras siquiera. Si decidís abrirlo, no brindes ninguna información ni teclees nada en la página que te incluye hasta comprobar la seguridad.
430  Seguridad Informática / Seguridad / Re: (Problema) Anomalías extrañas y fantasmales en Win7 en: 17 Febrero 2016, 14:42 pm
Tengo la suficiente seguridad como para decir que nada pasa en mi computadora sin mi consentimiento; diariamente reviso mis reglas de firewall, mismo con procesos en ejecución, con servicios, programas de arranque, entradas de registro, pruebo la vitalidad de mi antivirus con un virus falso que considera ofensivo; lo actualizo, reviso sus excepciones, también tengo actualizado WinDefender, no tengo ni un simple problema en el centro de actividades, reviso el archivo hosts, reviso los handles de los procesos con ProcessExplorer y reviso las conexiones activas con NetStumbler. Todo eso, todos los días y hasta ahora no me reportó nada.
Estoy seguro de conocer absolutamente todas las entradas de este resumen.
Perdón si está mal el formato del resumen, recuerden que soy nuevo en elhacker.
Código:
Logfile of Trend Micro HijackThis v2.0.5
Scan saved at 10:25:08 a.m., on 17/02/2016
Platform: Windows 7 SP1 (WinNT 6.00.3505)
MSIE: Internet Explorer v11.0 (11.00.9600.18163)

FIREFOX: 40.0.2 (x86 es-ES)
Boot mode: Normal

Running processes:
C:\Windows\system32\taskhost.exe
C:\Windows\system32\Dwm.exe
C:\Windows\explorer.exe
C:\Program Files\Realtek\Audio\HDA\RtHDVCpl.exe
C:\Program Files\Synaptics\SynTP\SynTPEnh.exe
C:\Program Files\Intel\On Screen Indicator\bin\FnKeyHook.exe
C:\Program Files\RocketDock\RocketDock.exe
C:\Program Files\Google\Chrome\Application\chrome.exe
C:\Program Files\Google\Chrome\Application\chrome.exe
C:\Program Files\Google\Chrome\Application\chrome.exe
C:\Program Files\Google\Chrome\Application\chrome.exe
C:\Program Files\Google\Chrome\Application\chrome.exe
C:\Program Files\Google\Chrome\Application\chrome.exe
C:\Users\Alumno\Desktop\HijackThis.exe

R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Search Page = http://go.microsoft.com/fwlink/?LinkId=54896
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = about:blank
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = http://go.microsoft.com/fwlink/p/?LinkId=255141
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = http://go.microsoft.com/fwlink/?LinkId=54896
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = http://go.microsoft.com/fwlink/?LinkId=54896
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = about:blank
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant =
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch =
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyServer = 10.111.255.4:80
R0 - HKCU\Software\Microsoft\Internet Explorer\Toolbar,LinksFolderName =
F2 - REG:system.ini: Shell=C:\Windows\system32\explorer.exe
O2 - BHO: avast! Online Security - {8E5E2654-AD2D-48bf-AC2D-D17F00898D06} - C:\Program Files\AVAST Software\Avast\aswWebRepIE.dll
O2 - BHO: (no name) - {B164E929-A1B6-4A06-B104-2CD0E90A88FF} - (no file)
O4 - HKLM\..\Run: [RTHDVCPL] C:\Program Files\Realtek\Audio\HDA\RtHDVCpl.exe -s
O4 - HKLM\..\Run: [SynTPEnh] %ProgramFiles%\Synaptics\SynTP\SynTPEnh.exe
O4 - HKLM\..\Run: [FnKeyHook] C:\Program Files\Intel\On Screen Indicator\bin\FnKeyHook.exe
O4 - HKLM\..\Run: [AlwaysAware Hard-Disk Drive] "C:\Program Files\Intel(R) Learning Series\HDD Protection\HDD Protection\HPUtility.exe" /p
O4 - HKLM\..\Run: [GfxServiceInstall] C:\Windows\system32\GfxCUIServiceInstall.vbs
O4 - HKLM\..\Run: [AvastUI.exe] "C:\Program Files\AVAST Software\Avast\AvastUI.exe" /nogui
O4 - HKCU\..\Run: [RocketDock] "C:\Program Files\RocketDock\RocketDock.exe"
O11 - Options group: [ACCELERATED_GRAPHICS] Accelerated graphics
O18 - Protocol: dssrequest - {5513F07E-936B-4E52-9B00-067394E91CC5} - (no file)
O18 - Protocol: sacore - {5513F07E-936B-4E52-9B00-067394E91CC5} - (no file)
O18 - Filter: application/x-mfe-ipt - {3EF5086B-5478-4598-A054-786C45D75692} - (no file)
O23 - Service: @%SystemRoot%\system32\Alg.exe,-112 (ALG) - Unknown owner - C:\Windows\System32\alg.exe
O23 - Service: AlwaysAware HDP Service - OEM - C:\Program Files\Intel(R) Learning Series\HDD Protection\HDD Protection\HDPService.exe
O23 - Service: @%systemroot%\system32\appidsvc.dll,-100 (AppIDSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\appinfo.dll,-100 (Appinfo) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @appmgmts.dll,-3250 (AppMgmt) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\audiosrv.dll,-204 (AudioEndpointBuilder) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\audiosrv.dll,-200 (Audiosrv) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: Avast Antivirus (avast! Antivirus) - AVAST Software - C:\Program Files\AVAST Software\Avast\AvastSvc.exe
O23 - Service: @%SystemRoot%\system32\bdesvc.dll,-100 (BDESVC) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\bfe.dll,-1001 (BFE) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\qmgr.dll,-1000 (BITS) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\browser.dll,-100 (Browser) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\certprop.dll,-11 (CertPropSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\cryptsvc.dll,-1001 (CryptSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @oleres.dll,-5012 (DcomLaunch) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: Device Control Service - Intel Corporation - C:\Program Files\Intel\Device Control Service\DeviceControlService.exe
O23 - Service: @%SystemRoot%\system32\dhcpcore.dll,-100 (Dhcp) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\UtcResources.dll,-3001 (DiagTrack) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\dnsapi.dll,-101 (Dnscache) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\dot3svc.dll,-1102 (dot3svc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\dps.dll,-500 (DPS) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\eapsvc.dll,-1 (EapHost) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\ehome\ehrecvr.exe,-101 (ehRecvr) - Unknown owner - C:\Windows\ehome\ehRecvr.exe
O23 - Service: @%SystemRoot%\ehome\ehsched.exe,-101 (ehSched) - Unknown owner - C:\Windows\ehome\ehsched.exe
O23 - Service: @%SystemRoot%\system32\wevtsvc.dll,-200 (eventlog) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @comres.dll,-2450 (EventSystem) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\fdPHost.dll,-100 (fdPHost) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\fdrespub.dll,-100 (FDResPub) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\FntCache.dll,-100 (FontCache) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @gpapi.dll,-112 (gpsvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: Google Update Servicio (gupdate) (gupdate) - Unknown owner - C:\Program Files\Google\Update\GoogleUpdate.exe
O23 - Service: Google Update Servicio (gupdatem) (gupdatem) - Unknown owner - C:\Program Files\Google\Update\GoogleUpdate.exe
O23 - Service: LogMeIn Hamachi Tunneling Engine (Hamachi2Svc) - LogMeIn Inc. - C:\Program Files\LogMeIn Hamachi\hamachi-2.exe
O23 - Service: @%SystemRoot%\system32\kmsvc.dll,-6 (hkmsvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: Intel(R) Rapid Storage Technology (IAStorDataMgrSvc) - Intel Corporation - C:\Program Files\Intel\Intel(R) Rapid Storage Technology\IAStorDataMgrSvc.exe
O23 - Service: InstallDriver Table Manager (IDriverT) - Macrovision Corporation - C:\Program Files\Common Files\InstallShield\Driver\1150\Intel 32\IDriverT.exe
O23 - Service: @%SystemRoot%\system32\ikeext.dll,-501 (IKEEXT) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\IPBusEnum.dll,-102 (IPBusEnum) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\iphlpsvc.dll,-500 (iphlpsvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @comres.dll,-2946 (KtmRm) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\srvsvc.dll,-100 (LanmanServer) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\wkssvc.dll,-100 (LanmanWorkstation) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\lltdres.dll,-1 (lltdsvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\lmhsvc.dll,-101 (lmhosts) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: LMIGuardianSvc - LogMeIn, Inc. - C:\Program Files\LogMeIn Hamachi\LMIGuardianSvc.exe
O23 - Service: @%systemroot%\system32\mmcss.dll,-100 (MMCSS) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\FirewallAPI.dll,-23090 (MpsSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @comres.dll,-2797 (MSDTC) - Unknown owner - C:\Windows\System32\msdtc.exe
O23 - Service: @%SystemRoot%\system32\iscsidsc.dll,-5000 (MSiSCSI) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\msimsg.dll,-27 (msiserver) - Unknown owner - C:\Windows\system32\msiexec.exe
O23 - Service: Agente de Protección de acceso a redes (napagent) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\netman.dll,-109 (Netman) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\netprofm.dll,-202 (netprofm) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\nlasvc.dll,-1 (NlaSvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\nsisvc.dll,-200 (nsi) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\pnrpsvc.dll,-8004 (p2pimsvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\p2psvc.dll,-8006 (p2psvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\pcasvc.dll,-1 (PcaSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\peerdistsvc.dll,-9000 (PeerDistSvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\umpnpmgr.dll,-100 (PlugPlay) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\pnrpauto.dll,-8002 (PNRPAutoReg) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\pnrpsvc.dll,-8000 (PNRPsvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\polstore.dll,-5010 (PolicyAgent) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\umpo.dll,-100 (Power) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\profsvc.dll,-300 (ProfSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\qwave.dll,-1 (QWAVE) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%Systemroot%\system32\rasauto.dll,-200 (RasAuto) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%Systemroot%\system32\rasmans.dll,-200 (RasMan) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @regsvc.dll,-1 (RemoteRegistry) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%windir%\system32\RpcEpMap.dll,-1001 (RpcEptMapper) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: Ubicador de llamada a procedimiento remoto (RPC) (RpcLocator) - Unknown owner - C:\Windows\system32\locator.exe
O23 - Service: @oleres.dll,-5010 (RpcSs) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: RzKLService - Razer Inc. - D:\Razer Cortex\RzKLService.exe
O23 - Service: @%SystemRoot%\system32\schedsvc.dll,-100 (Schedule) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\seclogon.dll,-7001 (seclogon) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\Sens.dll,-200 (SENS) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\ipnathlp.dll,-106 (SharedAccess) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\shsvcs.dll,-12288 (ShellHWDetection) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: Skype Updater (SkypeUpdate) - Skype Technologies - C:\Program Files\Skype\Updater\Updater.exe
O23 - Service: @%SystemRoot%\system32\snmptrap.exe,-3 (SNMPTRAP) - Unknown owner - C:\Windows\System32\snmptrap.exe
O23 - Service: @%SystemRoot%\system32\sppsvc.exe,-101 (sppsvc) - Unknown owner - C:\Windows\system32\sppsvc.exe
O23 - Service: @%SystemRoot%\system32\sppuinotify.dll,-103 (sppuinotify) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\ssdpsrv.dll,-100 (SSDPSRV) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: Servicio de protocolo de túnel de sockets seguros (SstpSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\wiaservc.dll,-9 (StiSvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\System32\StorSvc.dll,-100 (StorSvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\swprv.dll,-103 (swprv) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: Superfetch (SysMain) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\tbssvc.dll,-100 (TBS) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\themeservice.dll,-8192 (Themes) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\mmcss.dll,-102 (THREADORDER) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\trkwks.dll,-1 (TrkWks) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\servicing\TrustedInstaller.exe,-100 (TrustedInstaller) - Unknown owner - C:\Windows\servicing\TrustedInstaller.exe
O23 - Service: @%SystemRoot%\system32\ui0detect.exe,-101 (UI0Detect) - Unknown owner - C:\Windows\system32\UI0Detect.exe
O23 - Service: @%SystemRoot%\system32\umrdp.dll,-1000 (UmRdpService) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\upnphost.dll,-213 (upnphost) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\dwm.exe,-2000 (UxSms) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\vds.exe,-100 (vds) - Unknown owner - C:\Windows\System32\vds.exe
O23 - Service: @%systemroot%\system32\vssvc.exe,-102 (VSS) - Unknown owner - C:\Windows\system32\vssvc.exe
O23 - Service: @%systemroot%\system32\wbengine.exe,-104 (wbengine) - Unknown owner - C:\Windows\system32\wbengine.exe
O23 - Service: @%systemroot%\system32\wbiosrvc.dll,-100 (WbioSrvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\wcncsvc.dll,-3 (wcncsvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\WcsPlugInService.dll,-200 (WcsPlugInService) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%systemroot%\system32\wdi.dll,-502 (WdiServiceHost) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\wdi.dll,-500 (WdiSystemHost) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\webclnt.dll,-100 (WebClient) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\wecsvc.dll,-200 (Wecsvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\System32\wercplsupport.dll,-101 (wercplsupport) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\System32\wersvc.dll,-100 (WerSvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%ProgramFiles%\Windows Defender\MsMpRes.dll,-103 (WinDefend) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%SystemRoot%\system32\winhttp.dll,-100 (WinHttpAutoProxySvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%Systemroot%\system32\wbem\wmisvc.dll,-205 (Winmgmt) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\System32\wlansvc.dll,-257 (Wlansvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%Systemroot%\system32\wbem\wmiapsrv.exe,-110 (wmiApSrv) - Unknown owner - C:\Windows\system32\wbem\WmiApSrv.exe
O23 - Service: @%SystemRoot%\system32\wpdbusenum.dll,-100 (WPDBusEnum) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\System32\wscsvc.dll,-200 (wscsvc) - Unknown owner - C:\Windows\System32\svchost.exe
O23 - Service: @%systemroot%\system32\SearchIndexer.exe,-103 (WSearch) - Unknown owner - C:\Windows\system32\SearchIndexer.exe
O23 - Service: @%systemroot%\system32\wuaueng.dll,-105 (wuauserv) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\system32\wudfsvc.dll,-1000 (wudfsvc) - Unknown owner - C:\Windows\system32\svchost.exe
O23 - Service: @%SystemRoot%\System32\wwansvc.dll,-257 (WwanSvc) - Unknown owner - C:\Windows\system32\svchost.exe

--
End of file - 17080 bytes
Páginas: 1 ... 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 [43] 44
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines