Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 3.142.220.6
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : telnetlib.cpython-32.pyo
l
��bc@s�dZddlZddlZddlZddlZdgZdZdZedg�Z	edg�Z
edg�Zedg�Zed	g�Z
edg�Zed
g�Zedg�Zedg�Zed
g�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Zedg�Z edg�Z!edg�Z"edg�Z#edg�Z$edg�Z%ed g�Z&ed!g�Z'ed"g�Z(ed#g�Z)ed$g�Z*ed%g�Z+ed&g�Z,ed'g�Z-ed(g�Z.ed)g�Z/ed*g�Z0edg�Z1ed+g�Z2ed,g�Z3ed-g�Z4ed.g�Z5ed/g�Z6ed0g�Z7ed1g�Z8ed2g�Z9ed3g�Z:ed4g�Z;ed5g�Z<ed6g�Z=ed7g�Z>ed8g�Z?ed9g�Z@ed:g�ZAed;g�ZBed<g�ZCed=g�ZDed>g�ZEed?g�ZFed@g�ZGedAg�ZHedBg�ZIedCg�ZJedDg�ZKedEg�ZLedFg�ZMedGg�ZNedg�ZOedg�ZPGdH�d�ZQdI�ZReSdJkr�eR�ndS(KuVTELNET 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(b'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 b'' 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

iNuTelnetii�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�iiiiiiiii	i
iii
iiiiiiiiiiiiiiiiii i!i"i#i$i%i&i'i(i)i*i+i,i-i.i/i0i1i�i�i�cBsF|EeZdZd dejd�Zdejd�Zd�Zd�Z	d�Z
d�Zd�Zd	�Z
d
�Zd d�Zd�Zd d
�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Zd�Z d d�Z!d d�Z"d d�Z#d S(!u�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|_ttd�|_|dk	r�|j|||�ndS(u�Constructor.

        When called without arguments, create an unconnected instance.
        With a hostname argument, it connects the instance; port number
        and timeout are optional.
        siupollN(u
DEBUGLEVELu
debugleveluhostuportutimeoutuNoneusockurawquirawqucookedqueofuiacsequsbusbdataquoption_callbackuhasattruselectu	_has_polluopen(uselfuhostuportutimeout((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu__init__�s 													cCsRd|_|st}n||_||_||_tj||f|�|_dS(u�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(ueofuTELNET_PORTuhostuportutimeoutusocketucreate_connectionusock(uselfuhostuportutimeout((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuopen�s					cCs|j�dS(u#Destructor -- close the connection.N(uclose(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu__del__�scGsW|jdkrStd|j|jfdd�|rFt||�qSt|�ndS(u�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.

        iuTelnet(%s,%s):uendu N(u
debugleveluprintuhostuport(uselfumsguargs((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyumsg�s
 cCs
||_dS(uhSet the debug level.

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

        N(u
debuglevel(uselfu
debuglevel((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuset_debuglevel�scCsA|jr|jj�nd|_d|_d|_d|_dS(uClose the connection.iisN(usockucloseueofuiacsequsb(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuclose�s				cCs|jS(u)Return the socket object used internally.(usock(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu
get_socketscCs
|jj�S(u9Return the fileno() of the socket object used internally.(usockufileno(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyufilenoscCsIt|kr%|jttt�}n|jd|�|jj|�dS(u�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.

        usend %rN(uIACureplaceumsgusockusendall(uselfubuffer((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuwritescCs-|jr|j||�S|j||�SdS(uRead 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.

        N(u	_has_pollu_read_until_with_pollu_read_until_with_select(uselfumatchutimeout((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu
read_untils	cCs&t|�}|}|dk	r:ddlm}|�}n|j�|jj|�}|dkr�tj�}tjtj	B}	|j
||	�x8|dkr�|jr�y|j|�}
Wnitjk
r%}zF|j
t
jkr|dk	r
|�|}||}nw�n�WYdd}~XnXxf|
D]^\}
}||	@r-tdt|j�|�}|j�|j�|jj||�}q-q-W|dk	r�|�|}||kr�Pn||}q�q�W|j|�n|dkr||}|jd|�}|j|d�|_|S|j�S(u�Read until a given string is encountered or until timeout.

        This method uses select.poll() to implement the timeout.
        i(utimeN(ulenuNoneutimeuprocess_rawqucookedqufinduselectupolluPOLLINuPOLLPRIuregisterueofuerroruerrnouEINTRumaxu	fill_rawqu
unregisteruread_very_lazy(uselfumatchutimeoutunucall_timeoututimeu
time_startuiupollerupoll_in_or_priority_flagsureadyueuelapsedufdumodeubuf((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu_read_until_with_poll)sN







cCs�t|�}|j�|jj|�}|dkrk||}|jd|�}|j|d�|_|S|gggf}|}|dk	r�||f}ddlm}|�}	nx�|jr�tj|�|kr�tdt|j�|�}|j	�|j�|jj||�}|dkrb||}|jd|�}|j|d�|_|S|dk	r�|�|	}
|
|kr�Pn|||
f}q�q�W|j
�S(u~Read until a given string is encountered or until timeout.

        The timeout is implemented using select.select().
        iN(utime(ulenuprocess_rawqucookedqufinduNoneutimeueofuselectumaxu	fill_rawquread_very_lazy(uselfumatchutimeoutunuiubufus_replyus_argsutimeu
time_startuelapsed((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu_read_until_with_selectVs<


"



cCsD|j�x!|js-|j�|j�q
W|j}d|_|S(u7Read all data until EOF; block until connection closed.s(uprocess_rawqueofu	fill_rawqucookedq(uselfubuf((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuread_allzs

		cCsO|j�x,|jr8|jr8|j�|j�q
W|j}d|_|S(u�Read at least one byte of cooked data unless EOF is hit.

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

        s(uprocess_rawqucookedqueofu	fill_rawq(uselfubuf((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu	read_some�s

		cCsE|j�x.|jr:|j�r:|j�|j�q
W|j�S(uRead everything that's possible without blocking in I/O (eager).

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

        (uprocess_rawqueofu
sock_availu	fill_rawquread_very_lazy(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuread_very_eager�s


cCsO|j�x8|jrD|jrD|j�rD|j�|j�q
W|j�S(u�Read readily available data.

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

        (uprocess_rawqucookedqueofu
sock_availu	fill_rawquread_very_lazy(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu
read_eager�s

#
cCs|j�|j�S(uProcess and return data that's already in the queues (lazy).

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

        (uprocess_rawquread_very_lazy(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu	read_lazy�s
cCs?|j}d|_|r;|jr;|jr;td��n|S(u�Return any data available in the cooked queue (very lazy).

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

        sutelnet connection closed(ucookedqueofurawquEOFError(uselfubuf((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuread_very_lazy�s
		cCs|j}d|_|S(uReturn any data available in the SB ... SE queue.

        Return b'' 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.

        s(usbdataq(uselfubuf((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuread_sb_data�s		cCs
||_dS(uIProvide a callback function called after each receipt of a telnet option.N(uoption_callback(uselfucallback((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuset_option_negotiation_callback�sc
Csddg}y�x�|jr�|j�}|js�|tkrBqn|dkrTqn|tkr~||j|||j<qq�|j|7_qt|j�dkr�|ttt	t
fkr�|j|7_qnd|_|tkr||j|||j<q�|tkr#d|_d|_n6|t
krYd|_|j|d|_d|d<n|jr{|j|j|t�q�|jdt|��qt|j�dkr|jdd�}d|_|}|ttfkrF|jd|tkr�dp�d	t|��|jr+|j|j||�q�|jjtt
|�q�|t	t
fkr�|jd|t	krsd
pvdt|��|jr�|j|j||�q�|jjtt|�q�qqWWn$tk
r�d|_d|_YnX|j|d|_|j|d|_dS(
u�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.

        ssiiuIAC %d not recognizediu	IAC %s %duDOuDONTuWILLuWONTN(urawqurawq_getcharuiacsequtheNULLuIACusbulenuDOuDONTuWILLuWONTuSBusbdataquSEuoption_callbackusockuNOOPTumsguordusendalluEOFErrorucookedq(uselfubufucucmduopt((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuprocess_rawq�sh				
			"		"	&
		cCs�|js(|j�|jr(t�q(n|j|j|jd�}|jd|_|jt|j�kr�d|_d|_n|S(u�Get next char from raw queue.

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

        isi(urawqu	fill_rawqueofuEOFErroruirawqulen(uselfuc((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyurawq_getchars	
		cCsm|jt|j�kr-d|_d|_n|jjd�}|jd|�||_|j||_dS(u�Fill raw queue from exactly one recv() system call.

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

        sii2urecv %rN(uirawqulenurawqusockurecvumsgueof(uselfubuf((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu	fill_rawq1s	
cCs+tj|gggd�|gggfkS(u-Test whether data is available on the socket.i(uselect(uself((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu
sock_availBscCs�tjdkr|j�dSx�tj|tjggg�\}}}||kr�y|j�}Wntk
r�td�PYnX|r�tjj	|j
d��tjj�q�ntj|kr tjj�j
d�}|s�Pn|j	|�q q dS(u9Interaction function, emulates a very dumb telnet client.uwin32Nu(*** Connection closed by remote host ***uascii(usysuplatformumt_interactuselectustdinu
read_eageruEOFErroruprintustdoutuwriteudecodeuflushureadlineuencode(uselfurfduwfduxfdutextuline((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuinteractFs&
'

cCsXddl}|j|jd�x2tjj�}|s;Pn|j|jd��q"dS(u$Multithreaded version of interact().iNuascii((u_threadustart_new_threadulistenerusysustdinureadlineuwriteuencode(uselfu_threaduline((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyumt_interact\scCslxey|j�}Wn tk
r5td�dSYnX|rXtjj|jd��qtjj�qdS(u>Helper for mt_interact() -- this executes in the other thread.u(*** Connection closed by remote host ***Nuascii(u
read_eageruEOFErroruprintusysustdoutuwriteudecodeuflush(uselfudata((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyulistenerfs

	cCs-|jr|j||�S|j||�SdS(u�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.

        N(u	_has_pollu_expect_with_pollu_expect_with_select(uselfulistutimeout((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuexpectss	cCsd}|dd�}tt|��}xP|D]H}t||d�s/|s]ddl}n|j||�||<q/q/W|}|dk	r�ddlm}|�}n|j�d}	xc|D][}||j|j	�}	|	r�|	j
�}
|j	d|
�}|j	|
d�|_	Pq�q�W|	s�tj�}tj
tjB}
|j||
�xh|	r�|jr�y|j|�}Wnitjk
r�}
zF|
jtjkr�|dk	r�|�|}||}nwTn�WYdd}
~
XnXx�|D]�\}}||
@r�|j�|j�xf|D][}||j|j	�}	|	r|	j
�}
|j	d|
�}|j	|
d�|_	PqqWq�q�W|dk	rT|�|}||kr�Pn||}qTqTW|j|�n|	r�||	|fS|j�}|r|jrt�ndd|fS(u�Read until one from a list of a regular expressions matches.

        This method uses select.poll() to implement the timeout.
        Nusearchi(utimeii����(uNoneurangeulenuhasattrureucompileutimeuprocess_rawqusearchucookedquenduselectupolluPOLLINuPOLLPRIuregisterueofuerroruerrnouEINTRu	fill_rawqu
unregisteruread_very_lazyuEOFError(uselfuexpect_listutimeoutureuindicesuiucall_timeoututimeu
time_startumueutextupollerupoll_in_or_priority_flagsureadyuelapsedufdumode((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu_expect_with_poll�st










	cCs�d}|dd�}tt|��}xP|D]H}t||d�s/|s]ddl}n|j||�||<q/q/W|dk	r�ddlm}|�}nx|j�xl|D]d}||j|j	�}|r�|j
�}	|j	d|	�}
|j	|	d�|_	|||
fSq�W|jr,Pn|dk	r�|�|}||krUPn|j�ggg||f}t
j
|�\}
}}|
s�Pq�n|j�q�|j�}
|
r�|jr�t�ndd|
fS(u�Read until one from a list of a regular expressions matches.

        The timeout is implemented using select.select().
        Nusearchi(utimeii����(uNoneurangeulenuhasattrureucompileutimeuprocess_rawqusearchucookedquendueofufilenouselectu	fill_rawquread_very_lazyuEOFError(uselfulistutimeoutureuindicesuiutimeu
time_startumueutextuelapsedus_argsuruwux((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu_expect_with_select�sF


	

	N($u__name__u
__module__u__doc__uNoneusocketu_GLOBAL_DEFAULT_TIMEOUTu__init__uopenu__del__umsguset_debuglevelucloseu
get_socketufilenouwriteu
read_untilu_read_until_with_pollu_read_until_with_selecturead_allu	read_someuread_very_eageru
read_eageru	read_lazyuread_very_lazyuread_sb_datauset_option_negotiation_callbackuprocess_rawqurawq_getcharu	fill_rawqu
sock_availuinteractumt_interactulisteneruexpectu_expect_with_pollu_expect_with_select(u
__locals__((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyuTelnet�s@
5								
	-$	
					
			H					
	
?cCsd}x>tjdd�rFtjddkrF|d}tjd=q	Wd}tjdd�rptjd}nd}tjdd�r�tjd}yt|�}Wq�tk
r�tj|d�}Yq�Xnt�}|j|�|j||dd	�|j	�|j
�dS(
u�Test program for telnetlib.

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

    Default host is localhost; default port is 23.

    iiNu-du	localhostiutcputimeoutg�?(usysuargvuintu
ValueErrorusocketu
getservbynameuTelnetuset_debugleveluopenuinteractuclose(u
debugleveluhostuportuportstrutn((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyutest�s&)


	

u__main__(Tu__doc__uerrnousysusocketuselectu__all__u
DEBUGLEVELuTELNET_PORTubytesuIACuDONTuDOuWONTuWILLutheNULLuSEuNOPuDMuBRKuIPuAOuAYTuECuELuGAuSBuBINARYuECHOuRCPuSGAuNAMSuSTATUSuTMuRCTEuNAOLuNAOPuNAOCRDuNAOHTSuNAOHTDuNAOFFDuNAOVTSuNAOVTDuNAOLFDuXASCIIuLOGOUTuBMuDETuSUPDUPuSUPDUPOUTPUTuSNDLOCuTTYPEuEORuTUIDuOUTMRKuTTYLOCuVT3270REGIMEuX3PADuNAWSuTSPEEDuLFLOWuLINEMODEuXDISPLOCuOLD_ENVIRONuAUTHENTICATIONuENCRYPTuNEW_ENVIRONuTN3270EuXAUTHuCHARSETuRSPuCOM_PORT_OPTIONuSUPPRESS_LOCAL_ECHOuTLSuKERMITuSEND_URLu	FORWARD_XuPRAGMA_LOGONu
SSPI_LOGONuPRAGMA_HEARTBEATuEXOPLuNOOPTuTelnetutestu__name__(((u0/usr/local/python-3.2/lib/python3.2/telnetlib.pyu<module>!s�	��s	
© 2025 GrazzMean