linux telnet 传文件命令,telnet 传输文件

用python创建个临时服务器,发送文件供telnet访问

import socket

import base64

port = 10005

filename = 'libcrypto.so.1.0.1e'

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

sock.bind(('0.0.0.0', port))

sock.listen(5)

while True:

connection,address = sock.accept()

try:

content = 'hello'

f = file(filename)

content = base64.b64encode(f.read())

connection.sendall(content.strip())

connection.close()

except socket.timeout:

print 'time out'

connection.close()

依次执行下面命令

telnet 102.200.200.202 10005 |tee > temp.txt

tail -n +4 temp.txt > temp2.txt

base64 -d < temp2.txt |tee >libcrypto.so.1.0.1e.so

上面的ip地址是个例子瞎写的。记得换成你自己的。

原理说明

只有telnet能与外界通信,那么可以把文件转成文本形式输出到telnet端

你可能感兴趣的:(linux,telnet,传文件命令)