# Copyright (C) 2003-2007 Robey Pointer <robeypointer@gmail.com> # # This file is part of paramiko. # # Paramiko is free software; you can redistribute it and/or modify it under the # terms of the GNU Lesser General Public License as published by the Free # Software Foundation; either version 2.1 of the License, or (at your option) # any later version. # # Paramiko is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # details. # # You should have received a copy of the GNU Lesser General Public License # along with Paramiko; if not, write to the Free Software Foundation, Inc., # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. import socket import sys from paramiko.py3compat import u import time # windows does not have termios... try: import termios import tty has_termios = True except ImportError: has_termios = False def interactive_shell(chan): if has_termios: posix_shell(chan) else: windows_shell(chan) def posix_shell(chan): import select oldtty = termios.tcgetattr(sys.stdin) try: tty.setraw(sys.stdin.fileno()) tty.setcbreak(sys.stdin.fileno()) chan.settimeout(0.0) recode = [] cmd = '' log_file = "audit_log_%s.log" % time.strftime('%Y_%m_%d') f = file(log_file,'ab+') while True: r, w, e = select.select([chan, sys.stdin], [], []) if chan in r: try: x = u(chan.recv(1024)) if len(x) == 0: sys.stdout.write('\r\n*** EOF\r\n') break sys.stdout.write(x) sys.stdout.flush() except socket.timeout: pass if sys.stdin in r: x = sys.stdin.read(1) cmd += x if x == '\r': #print "cmd===>",cmd cmd_time = time.strftime('%Y-%m-%d-%H-%M-%S') log_line = "username:192.169.10.12:root:%s %s \n " %(cmd_time,cmd) f.write(log_line) print log_line cmd = '' if len(x) == 0: break chan.send(x) else: f.close() finally: termios.tcsetattr(sys.stdin, termios.TCSADRAIN, oldtty) # thanks to Mike Looijmans for this code def windows_shell(chan): import threading sys.stdout.write("Line-buffered terminal emulation. Press F6 or ^Z to send EOF.\r\n\r\n") def writeall(sock): while True: data = sock.recv(256) if not data: sys.stdout.write('\r\n*** EOF ***\r\n\r\n') sys.stdout.flush() break sys.stdout.write(data) sys.stdout.flush() writer = threading.Thread(target=writeall, args=(chan,)) writer.start() try: while True: d = sys.stdin.read(1) if not d: break chan.send(d) except EOFError: # user hit ^Z or F6 pass
paramiko intertive.py文件简单修改记录用户输入命令 v1
原创
©著作权归作者所有:来自51CTO博客作者lvnian2009的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
用户注册 v1 -根据邮箱注册用户
注册流程图1. 验证邮箱有效性(代码亲测有效)public static boolean verifyEmail(String email)
java 正则表达式 springboot mysql mybatis -
iouring修改记录
iouring历史变迁的背景
linux 内核态 内核线程 centos -
mysql修改记录命令 mysql数据修改命令
MySQL中修改数据的命令: INSERT、UPDATA、DELETE。
mysql修改记录命令 字段 表名 基本语法