Skip to content

Instantly share code, notes, and snippets.

View marcelohd's full-sized avatar

Marcelo Henrique marcelohd

View GitHub Profile
import getpass
import sys
import telnetlib
host = raw_input("Enter your HOST")
user = raw_input("Entre com o seu usuario: ")
passwd = getpass.getpass()
tel_net = telnetlib.Telnet(host)