Python远程获取MD5校验码并在web上显示

Stella981
• 阅读 712

一、编写python脚本,远程执行命令获取MD5校验码,脚本放到CGI路径下

#!/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>'

二、配置Apache调用python脚本

1开启CGI功能

Python远程获取MD5校验码并在web上显示

2配置CGI路径,设置用户名验证方式

Python远程获取MD5校验码并在web上显示

密码文件用Apache自带命令htpaddwd生成

给userA创建密码认证

htpaddwd /var/www/html/loganalyzer/passwd/.passwd userA

Python远程获取MD5校验码并在web上显示

3报错解决

Python远程获取MD5校验码并在web上显示

查看日志显示权限不足

Python远程获取MD5校验码并在web上显示

chown apache.apache ssh.py

修改后成功访问

Python远程获取MD5校验码并在web上显示

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
Python3:sqlalchemy对mysql数据库操作,非sql语句
Python3:sqlalchemy对mysql数据库操作,非sql语句python3authorlizmdatetime2018020110:00:00coding:utf8'''
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这