python批量修改ssh密码的实现
作者:我爱学python 时间:2023-07-06 13:17:08
由于工作需要本文主结合了excel表格,对表格中的ssh密码进行批量修改
以下是详细代码(python3):
'''
遇到问题没人解答?小编创建了一个Python学习交流QQ群:857662006
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
'''
#!/usr/bin/env python
#-*-coding:utf-8-*-
import paramiko
import socket
import pandas as pd
def demo(Ip,user,old_password,new_password):
# 建立一个sshclient对象
ssh = paramiko.SSHClient()
# 允许将信任的主机自动加入到host_allow 列表,此方法必须放在connect方法的前面
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
# 调用connect方法连接服务器
#如果远程执行命令错误信息是b'the input device is not a TTY\n' 去掉docker exec -it 中的t就好了
try:
ssh.connect(hostname=Ip, port=22, username=user, password=old_password,timeout=5)
#ubuntu修改密码两种方法
#方法一
# command1 = "echo '%s:%s' | chpasswd"%(user,new_password)
# stdin, stdout, stderr = ssh.exec_command(command1)
# out, err = stdout.read(), stderr.read()
# if err != '':
# print(err)
#
# else:
# print(out)
# # 关闭连接
# ssh.close()
#方法二
command = "passwd %s" %(user)
stdin, stdout, stderr = ssh.exec_command(command)
#\n模拟回车 输两次密码
stdin.write(new_password + '\n' + new_password + '\n')
out, err = stdout.read(), stderr.read()
successful = 'password updated successfully'
#print(out,err)
if successful in str(err):
print(Ip + " 密码修改成功!")
else:
print('\033[31m错误:\033[0m' + str(err))
print(Ip + " 密码修改失败!")
# 关闭连接
ssh.close()
except paramiko.ssh_exception.AuthenticationException as e:
print(Ip + ' ' + '\033[31m账号密码错误!\033[0m')
with open('nossh.txt','a') as f:
f.write(Ip + '\n')
except socket.timeout as e:
print(Ip + ' ' + '\033[31m连接超时!\033[0m')
with open('timeoutssh','a') as f:
f.write(Ip + '\n')
def Red_Excel(IP):
import sys
import time
file = r'E:\xxx.xlsx'
pd.set_option('display.max_columns', None)
pd.set_option('display.max_colwidth', 1000)
n = pd.read_excel(file,sheet_name='xxx') #表格中的sheet名
#print(n.values)
#显示含某字段的特定行
n1 = (n.loc[n['IP']==IP])
if not n1.empty:
n2 = n1.values
ip = n2[0][1]
user = n2[0][4]
password_old = n2[0][5]
password_new = n2[0][22]
houtai = n2[0][16]
print('IP:%s 账号:%s 旧密码:%s 是否后台:%s 新密码:%s' % (ip, user, password_old, houtai,password_new))
demo(ip,user,password_old,password_new)
else:
print('记录表无此IP!')
if __name__ == "__main__":
with open('ip.txt') as f:
for i in f:
ip = i.split('\n')[0]
Red_Excel(ip)
此代码可以适当修改,进行单独的ssh密码修改。
来源:https://www.jianshu.com/p/26d53e616340
标签:python,ssh,密码
0
投稿
猜你喜欢
python实现跳表SkipList的示例代码
2022-04-05 05:01:53
python实现一个围棋小游戏
2022-02-02 18:52:50
8大措施帮你构筑Access安全防线
2010-03-11 14:38:00
Mysql查询日期timestamp格式的数据实现
2024-01-22 08:59:55
python并发编程之多进程、多线程、异步和协程详解
2021-12-10 00:20:35
SQL Server转换为XQuery及反向转换
2009-01-20 13:32:00
语言编程花絮内建构建顺序示例详解
2023-11-04 09:42:12
python实现超市商品销售管理系统
2021-01-06 22:18:14
mysql 安全管理详情
2024-01-18 05:58:00
sql server实现在多个数据库间快速查询某个表信息的方法
2024-01-25 05:23:10
python从入门到实践之字典
2023-05-11 22:20:17
详解pandas.DataFrame中删除包涵特定字符串所在的行
2023-08-23 23:37:45
Python async模块使用方法杂谈
2023-12-12 14:46:36
Java数据库操作库DButils类的使用方法与实例详解
2024-01-20 13:32:45
vue3中路由传参query、params及动态路由传参详解
2023-07-02 16:58:29
vue中beforeRouteLeave实现页面回退不刷新的示例代码
2024-05-09 15:11:16
python上传时包含boundary时的解决方法
2021-03-28 08:28:54
python矩阵运算,转置,逆运算,共轭矩阵实例
2021-09-16 17:45:22
MYSQL必知必会读书笔记 第一章(基础)
2024-01-20 09:23:52
利用python实现简单的循环购物车功能示例代码
2021-05-12 14:52:58