[python 2.7] telnetlib를 이용한 telnet 접속하기
http://docs.python.org/2/library/telnetlib.html
#!/usr/bin/env python
import getpass
import sys
import telnetlib
HOST = "localhost"
user = raw_input("Enter your remote account: ")
password = getpass.getpass()
tn = telnetlib.Telnet(HOST)
tn.read_until("login: ")
tn.write(user + "\n")
if password:
tn.read_until("Password: ")
tn.write(password + "\n")
tn.write("ls\n")
tn.write("exit\n")
print tn.read_all()
'Python' 카테고리의 다른 글
문자열 조합 방법 (brute forcing) (0) | 2013.04.07 |
---|---|
[python]ZIP 파일 크랙 python 코드 (0) | 2013.03.26 |
[ python 2.7 ] HTTP POST data 전송하는 방법 (0) | 2012.10.17 |
[ py2exe] setup.py 파일 아이콘 변경 (0) | 2012.09.26 |
[ python 2.7 ] 파이썬 으로 만들어본 리버스 커넥션 + 업로드+ 다운로드 (0) | 2012.09.26 |