1、編寫python腳本,遠程執行命令獲取MD5校驗碼,腳本放到CGI路徑下html
#!/usr/bin/env python #-*- coding: utf-8 -*- """ This runs a command on a remote host using SSH. At the prompts enter hostname, user, password and the command. """ print "Content-type:text/html" print print '<html>' print '<head>' print '<title>Hello</title>' print '</head>' print '<body>' import pexpect import getpass, os import traceback #user: ssh 主機的用戶名 #host:ssh 主機的域名 #password:ssh 主機的密碼 #command:即將在遠端 ssh 主機上運行的命令 def ssh_command (user, host, password, command): """ This runs a command on the remote host. This could also be done with the pxssh class, but this demonstrates what that class does at a simpler level. This returns a pexpect.spawn object. This handles the case when you try to connect to a new host and ssh asks you if you want to accept the public key fingerprint and continue connecting. """ ssh_newkey = 'Are you sure you want to continue connecting' # 爲 ssh 命令生成一個 spawn 類的子程序對象. child = pexpect.spawn('ssh -l %s %s %s'%(user, host, command)) i = child.expect([pexpect.TIMEOUT, ssh_newkey, 'password: ']) # 若是登陸超時,打印出錯信息,並退出. if i == 0: # Timeout print 'ERROR!' print 'SSH could not login. Here is what SSH said:' print child.before, child.after return None # 若是 ssh 沒有 public key,接受它. if i == 1: # SSH does not have the public key. Just accept it. child.sendline ('yes') child.expect ('password: ') i = child.expect([pexpect.TIMEOUT, 'password: ']) if i == 0: # Timeout print 'ERROR!' print 'SSH could not login. Here is what SSH said:' print child.before, child.after return None # 輸入密碼. child.sendline(password) return child def main (): # 得到用戶指定 ssh 主機域名. #host = raw_input('Hostname: ') host = "192.168.1.100" # 得到用戶指定 ssh 主機用戶名. #user = raw_input('User: ') user = "centos" # 得到用戶指定 ssh 主機密碼. #password = getpass.getpass() password = "************" # 得到用戶指定 ssh 主機上即將運行的命令. #command = raw_input('Enter the command: ') command = "md5sum /usr/local/tomcat8.0.15/webapps/ROOT/caijinquanInHouse/caijinquan.plist | awk '{print\$1}'" child = ssh_command (user, host, password, command) # 匹配 pexpect.EOF child.expect(pexpect.EOF) # 輸出命令結果. print child.before if __name__ == '__main__': try: main() except Exception, e: print str(e) traceback.print_exc() os._exit(1) print '</body>' print '</html>'
2、配置Apache調用python腳本python
1開啓CGI功能web
2配置CGI路徑,設置用戶名驗證方式apache
密碼文件用Apache自帶命令htpaddwd生成centos
給userA建立密碼認證tomcat
htpaddwd /var/www/html/loganalyzer/passwd/.passwd userAapp
3報錯解決ssh
查看日誌顯示權限不足webapp
chown apache.apache ssh.pyxss
修改後成功訪問