b374k
m1n1 1.01
Apache/2.2.15 (CentOS)
Linux obd60-6c49958d75-2q7cw 5.4.0-174-generic #193-Ubuntu SMP Thu Mar 7 14:29:28 UTC 2024 x86_64
uid=48(apache) gid=48(apache) groups=48(apache)
server ip : 172.67.192.52 | your ip : 10.244.126.0
safemode OFF
 >  / usr / lib64 / python2.6 /
Filename/usr/lib64/python2.6/telnetlib.pyc
Size19.45 kb
Permissionrw-r--r--
Ownerapache
Create time23-Dec-2025 17:41
Last modified20-Jun-2019 19:45
Last accessed22-Apr-2026 03:47
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
Ñò
§ÚêLc@s×dZddkZddkZddkZdgZdZdZed�Zed�Z ed�Z
ed �Z ed
�Z ed�Z
ed �Zed �Zed
�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Zed�Z ed�Z!ed�Z"ed�Z#ed �Z$ed!�Z%ed"�Z&ed#�Z'ed$�Z(ed%�Z)ed&�Z*ed'�Z+ed(�Z,ed)�Z-ed*�Z.ed+�Z/ed�Z0ed,�Z1ed-�Z2ed.�Z3ed/�Z4ed0�Z5ed1�Z6ed2�Z7ed3�Z8ed4�Z9ed5�Z:ed6�Z;ed7�Z<ed8�Z=ed9�Z>ed:�Z?ed;�Z@ed<�ZAed=�ZBed>�ZCed?�ZDed@�ZEedA�ZFedB�ZGedC�ZHedD�ZIedE�ZJedF�ZKedG�ZLedH�ZMed�ZNed�ZOdfdI��YZPdJ�ZQeRdKjo eQ�ndS(LsSTELNET client class.

Based on RFC 854: TELNET Protocol Specification, by J. Postel and
J. Reynolds

Example:

>>> from telnetlib import Telnet
>>> tn = Telnet('www.python.org', 79) # connect to finger port
>>> tn.write('guido\r\n')
>>> print tn.read_all()
Login Name TTY Idle When Where
guido Guido van Rossum pts/2 <Dec 2 11:10> snag.cnri.reston..

>>>

Note that read_all() won't read until eof -- it just reads some data
-- but it guarantees to read at least one byte unless EOF is hit.

It is possible to pass a Telnet object to select.select() in order to
wait until more data is available. Note that in this case,
read_eager() may return '' even if there was data on the socket,
because the protocol negotiation may have eaten the data. This is why
EOFError is needed in some cases to distinguish between "no data" and
"connection closed" (since the socket also appears ready for reading
when it is closed).

To do:
- option negotiation
- timeout should be intrinsic to the connection object instead of an
option on one of the read calls only

iÿÿÿÿNtTelnetiiiÿiþiýiüiûiðiñiòióiôiõiöi÷iøiùiúiiiiiiiii i
i i i
iiiiiiiiiiiiiiiiii i!i"i#i$i%i&i'i(i)i*i+i,i-i.i/i0i1i�i�i�cBseZdZddeid�Zdeid�Zd�Zd�Z d�Z
d�Z d�Z d �Z
d
�Zdd �Zd �Zd
�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zdd�ZRS(sëTelnet interface class.

An instance of this class represents a connection to a telnet
server. The instance is initially not connected; the open()
method must be used to establish a connection. Alternatively, the
host name and optional port number can be passed to the
constructor, too.

Don't try to reopen an already connected instance.

This class has many read_*() methods. Note that some of them
raise EOFError when the end of the connection is read, because
they can return an empty string for other reasons. See the
individual doc strings.

read_until(expected, [timeout])
Read until the expected string has been seen, or a timeout is
hit (default is no timeout); may block.

read_all()
Read all data until EOF; may block.

read_some()
Read at least one byte or EOF; may block.

read_very_eager()
Read all data available already queued or on the socket,
without blocking.

read_eager()
Read either data already queued or some data available on the
socket, without blocking.

read_lazy()
Read all data in the raw queue (processing it first), without
doing any socket I/O.

read_very_lazy()
Reads all data in the cooked queue, without doing any socket
I/O.

read_sb_data()
Reads available data between SB ... SE sequence. Don't block.

set_option_negotiation_callback(callback)
Each time a telnet option is read on the input flow, this callback
(if set) is called with the following parameters :
callback(telnet socket, command, option)
option will be chr(0) when there is no option.
No other action is done afterwards by telnetlib.

icCs�t|_||_||_||_d|_d|_d|_d|_ d|_
d|_ d|_ d|_
d|_|dj o|i|||�ndS(sÇConstructor.

When called without arguments, create an unconnected instance.
With a hostname argument, it connects the instance; port number
and timeout are optional.
tiN(t
DEBUGLEVELt
debuglevelthosttportttimeouttNonetsocktrawqtirawqtcookedqteoftiacseqtsbtsbdataqtoption_callbacktopen(tselfRRR((s!/usr/lib64/python2.6/telnetlib.pyt__init__»s             
cCsTd|_|p
t}n||_||_||_ti||f|�|_dS(sÊConnect to a host.

The optional second argument is the port number, which
defaults to the standard telnet port (23).

Don't try to reopen an already connected instance.
iN(R t TELNET_PORTRRRtsockettcreate_connectionR(RRRR((s!/usr/lib64/python2.6/telnetlib.pyRÓs 
   cCs|i�dS(s#Destructor -- close the connection.N(tclose(R((s!/usr/lib64/python2.6/telnetlib.pyt__del__ãscGsE|idjo1d|i|ifG|o
||GHqA|GHndS(sÁPrint a debug message, when the debug level is > 0.

If extra arguments are present, they are substituted in the
message using the standard string formatting operator.

isTelnet(%s,%d):N(RRR(Rtmsgtargs((s!/usr/lib64/python2.6/telnetlib.pyRçs

cCs
||_dS(shSet the debug level.

The higher it is, the more debug output you get (on sys.stdout).

N(R(RR((s!/usr/lib64/python2.6/telnetlib.pytset_debuglevelõscCsC|io|ii�nd|_d|_d|_d|_dS(sClose the connection.iiRN(RRR R
R(R((s!/usr/lib64/python2.6/telnetlib.pyRýs 
   cCs|iS(s)Return the socket object used internally.(R(R((s!/usr/lib64/python2.6/telnetlib.pyt
get_socketscCs
|ii�S(s9Return the fileno() of the socket object used internally.(Rtfileno(R((s!/usr/lib64/python2.6/telnetlib.pyR
scCsKt|jo|ittt�}n|id|�|ii|�dS(s²Write a string to the socket, doubling any IAC characters.

Can block if the connection is blocked. May raise
socket.error if the connection is closed.

ssend %rN(tIACtreplaceRRtsendall(Rtbuffer((s!/usr/lib64/python2.6/telnetlib.pytwrites
c Cs¢t|�}|i�|ii|�}|djo,||}|i| }|i||_|S|gggf}|}|dj o*||f}ddkl}|�} nxå|i oÙti|�|joÃtdt|i�|�}|i �|i�|ii||�}|djo,||}|i| }|i||_|S|dj o4|�| }
|
|joPn|||
f}q³q³W|i
�S(sRead until a given string is encountered or until timeout.

When no match is found, return whatever is available instead,
possibly the empty string. Raise EOFError if the connection
is closed and no cooked data is available.

iiÿÿÿÿ(ttimeN( tlent process_rawqR tfindRR#R tselecttmaxt fill_rawqtread_very_lazy( RtmatchRtntitbufts_replyts_argsR#t
time_starttelapsed((s!/usr/lib64/python2.6/telnetlib.pyt
read_untils> 






!







cCsF|i�x#|ip|i�|i�q
W|i}d|_|S(s7Read all data until EOF; block until connection closed.R(R%R R)R (RR.((s!/usr/lib64/python2.6/telnetlib.pytread_allAs


  cCsR|i�x/|i o#|i o|i�|i�q
W|i}d|_|S(s�Read at least one byte of cooked data unless EOF is hit.

Return '' if EOF is hit. Block if no data is immediately
available.

R(R%R R R)(RR.((s!/usr/lib64/python2.6/telnetlib.pyt read_someKs

  cCsH|i�x1|i o%|i�o|i�|i�q
W|i�S(s Read everything that's possible without blocking in I/O (eager).

Raise EOFError if connection closed and no cooked data
available. Return '' if no cooked data available otherwise.
Don't block unless in the midst of an IAC sequence.

(R%R t
sock_availR)R*(R((s!/usr/lib64/python2.6/telnetlib.pytread_very_eagerZs 

cCsS|i�x<|i o0|i o%|i�o|i�|i�q
W|i�S(sçRead readily available data.

Raise EOFError if connection closed and no cooked data
available. Return '' if no cooked data available otherwise.
Don't block unless in the midst of an IAC sequence.

(R%R R R6R)R*(R((s!/usr/lib64/python2.6/telnetlib.pyt
read_eagerhs 
#
cCs|i�|i�S(sProcess and return data that's already in the queues (lazy).

Raise EOFError if connection closed and no data available.
Return '' if no cooked data available otherwise. Don't block
unless in the midst of an IAC sequence.

(R%R*(R((s!/usr/lib64/python2.6/telnetlib.pyt read_lazyvs
cCs@|i}d|_| o"|io|i o
td�n|S(sÏReturn any data available in the cooked queue (very lazy).

Raise EOFError if connection closed and no data available.
Return '' if no cooked data available otherwise. Don't block.

Rstelnet connection closed(R R R tEOFError(RR.((s!/usr/lib64/python2.6/telnetlib.pyR*�s
  
cCs|i}d|_|S(sReturn any data available in the SB ... SE queue.

Return '' if no SB ... SE available. Should only be called
after seeing a SB or SE command. When a new SB command is
found, old unread SB data will be discarded. Don't block.

R(R(RR.((s!/usr/lib64/python2.6/telnetlib.pyt read_sb_data�s  cCs
||_dS(sIProvide a callback function called after each receipt of a telnet option.N(R(Rtcallback((s!/usr/lib64/python2.6/telnetlib.pytset_option_negotiation_callback�scCs:ddg}yÚxÓ|ioÈ|i�}|ipg|tjoqn|djoqn|tjo||i|||i<qqà|i|7_qt|i�djoû|ttt t
fjo|i|7_qnd|_|tjo||i|||i<qà|t jod|_d|_ n9|t
jo+d|_|i |d|_ d|d<n|io|i|i|t�qà|idt|��qt|i�djo |id}d|_|}|ttfjom|id|tjodpd t|��|io|i|i||�qÜ|iitt
|�qà|t t
fjom|id|t jod
pd t|��|io|i|i||�qÜ|iitt|�qàqqWWn%tj
od|_d|_nX|i|d|_|i |d|_ d S(
s Transfer from raw queue to cooked queue.

Set self.eof when connection is closed. Don't block unless in
the midst of an IAC sequence.

RsiisIAC %d not recognizedis IAC %s %dtDOtDONTtWILLtWONTN(R t rawq_getcharR
ttheNULLRRR$R>R?R@RAtSBRtSERRtNOOPTRtordR R:R (RR.tctcmdtopt((s!/usr/lib64/python2.6/telnetlib.pyR%�sj 
 



 

 

 

  $
 $
)  cCs|ip"|i�|io
t�q,n|i|i}|id|_|it|i�jod|_d|_n|S(s�Get next char from raw queue.

Block if no data is immediately available. Raise EOFError
when connection is closed.

iRi(R R)R R:R
R$(RRH((s!/usr/lib64/python2.6/telnetlib.pyRBæs


 
cCso|it|i�jod|_d|_n|iid�}|id|�| |_|i||_dS(s¢Fill raw queue from exactly one recv() system call.

Block if no data is immediately available. Set self.eof when
connection is closed.

Rii2srecv %rN(R
R$R RtrecvRR (RR.((s!/usr/lib64/python2.6/telnetlib.pyR)øs 

cCs+ti|gggd�|gggfjS(s-Test whether data is available on the socket.i(R'(R((s!/usr/lib64/python2.6/telnetlib.pyR6 scCsñtidjo|i�dSxËti|tiggg�\}}}||joXy|i�}Wntj
o
dGHPnX|o!tii|�tii �q®nti|jo,tii
�}|pPn|i|�q"q"dS(s9Interaction function, emulates a very dumb telnet client.twin32Ns(*** Connection closed by remote host ***( tsystplatformt mt_interactR'tstdinR8R:tstdoutR"tflushtreadline(Rtrfdtwfdtxfdttexttline((s!/usr/lib64/python2.6/telnetlib.pytinteract
s&
'
cCsQddk}|i|id�x+tii�}|pPn|i|�q"dS(s$Multithreaded version of interact().iÿÿÿÿN((tthreadtstart_new_threadtlistenerRMRPRSR"(RRZRX((s!/usr/lib64/python2.6/telnetlib.pyRO#s cCs^xWy|i�}Wntj
o
dGHdSX|otii|�qtii�qdS(s>Helper for mt_interact() -- this executes in the other thread.s(*** Connection closed by remote host ***N(R8R:RMRQR"RR(Rtdata((s!/usr/lib64/python2.6/telnetlib.pyR\-sc CsÖd}|}tt|��}xT|D]L}t||d�p2|pddk}n|i||�||<q&q&W|dj oddkl}|�}nxþ|i�xb|D]Z}||i|i �}|o7|i
�} |i | }
|i | |_ |||
fSq´W|i oPn|dj of|�|} | |joPn|i �ggg|| f} t
i
| �\}
}}|
pPq�n|i�q£|i�}
|
o|i o
t�ndd|
fS(s±Read until one from a list of a regular expressions matches.

The first argument is a list of regular expressions, either
compiled (re.RegexObject instances) or uncompiled (strings).
The optional second argument is a timeout, in seconds; default
is no timeout.

Return a tuple of three items: the index in the list of the
first regular expression that matches; the match object
returned; and the text read up till and including the match.

If EOF is read and no text was read, raise EOFError.
Otherwise, when nothing matches, return (-1, None, text) where
text is the text received so far (may be the empty string if a
timeout happened).

If a regular expression ends with a greedy match (e.g. '.*')
or if more than one expression can match the same input, the
results are undeterministic, and may depend on the I/O timing.

tsearchiÿÿÿÿN(R#(RtrangeR$thasattrtretcompileR#R%R^R tendR RR'R)R*R:(RtlistRRatindicesR-R#R1tmteRWR2R0trtwtx((s!/usr/lib64/python2.6/telnetlib.pytexpect:sJ


 




 
 
N( t__name__t
__module__t__doc__RRt_GLOBAL_DEFAULT_TIMEOUTRRRRRRRRR"R3R4R5R7R8R9R*R;R=R%RBR)R6RYROR\Rk(((s!/usr/lib64/python2.6/telnetlib.pyR�s85      '
  
 H    

c Cs
d}x;tido,tiddjo|d}tid=q Wd}tidotid}nd}tidoItid}yt|�}WqÆtj
oti|d�}qÆXnt�}|i|�|i||dd�|i �|i
�d S(
s�Test program for telnetlib.

Usage: python telnetlib.py [-d] ... [host [port]]

Default host is localhost; default port is 23.

iis-dt localhostittcpRgà?N( RMtargvtintt
ValueErrorRt
getservbynameRRRRYR(RRRtportstrttn((s!/usr/lib64/python2.6/telnetlib.pyttestts("

 

t__main__(SRnRMRR't__all__RRtchrRR?R>RAR@RCREtNOPtDMtBRKtIPtAOtAYTtECtELtGARDtBINARYtECHOtRCPtSGAtNAMStSTATUStTMtRCTEtNAOLtNAOPtNAOCRDtNAOHTStNAOHTDtNAOFFDtNAOVTStNAOVTDtNAOLFDtXASCIItLOGOUTtBMtDETtSUPDUPt SUPDUPOUTPUTtSNDLOCtTTYPEtEORtTUIDtOUTMRKtTTYLOCt VT3270REGIMEtX3PADtNAWStTSPEEDtLFLOWtLINEMODEtXDISPLOCt OLD_ENVIRONtAUTHENTICATIONtENCRYPTt NEW_ENVIRONtTN3270EtXAUTHtCHARSETtRSPtCOM_PORT_OPTIONtSUPPRESS_LOCAL_ECHOtTLStKERMITtSEND_URLt FORWARD_Xt PRAGMA_LOGONt
SSPI_LOGONtPRAGMA_HEARTBEATtEXOPLRFRRxRl(((s!/usr/lib64/python2.6/telnetlib.pyt<module>!s¦                                                                            ÿñ