首页 > Python资料 博客日记
为ssh服务器添加2fa认证,一个python脚本全搞定
2024-06-28 16:30:02Python资料围观136次
Python资料网推荐为ssh服务器添加2fa认证,一个python脚本全搞定这篇文章给大家,欢迎收藏Python资料网享受知识的乐趣
服务器ssh
如果被别人登陆就是一场灾难,所以我研究了ssh
认证,我发现Google Authenticator PAM
可以实现ssh
的2fa
认证,但是安装和配置比较麻烦。因此我用python
实现了ssh
的2fa
认证。考虑到很多Linux
服务器默认安装python
,所以我用py
脚本,并只使用标准库,不需要安装第三方py
库,方便部署。
- 首先保存如下脚本到文件:
/bin/login
,设置执行权限:chmod +x /bin/login
,记得修改TOTP_SECRET
密钥
#!/bin/env python
import os
import sys
import signal
import getpass
import subprocess
import hmac
import time
import base64
import hashlib
# 随机生成长度为16的全大写字符串作为2fa的密钥
TOTP_SECRET = 'KHGSRAEPVAFPPAGX'
try:
def gen_totp(secret: str, input=int(time.time()/30), digits=6):
if (missing_padding := len(secret) % 8) != 0:
secret += "=" * (8 - missing_padding)
byte_secret = base64.b32decode(secret, casefold=True)
result = bytearray()
while input != 0:
result.append(input & 0xFF)
input >>= 8
byte_input = bytes(bytearray(reversed(result)).rjust(8, b"\0"))
hasher = hmac.new(byte_secret, byte_input, hashlib.sha1)
hmac_hash = bytearray(hasher.digest())
offset = hmac_hash[-1] & 0xF
code = ((hmac_hash[offset] & 0x7F) << 24
| (hmac_hash[offset + 1] & 0xFF) << 16
| (hmac_hash[offset + 2] & 0xFF) << 8
| (hmac_hash[offset + 3] & 0xFF))
str_code = str(10_000_000_000 + (code % 10**digits))
return str_code[-digits:]
def read_totp_code():
def timeout(signum, frame): raise TimeoutError
signal.signal(signal.SIGALRM, timeout)
signal.alarm(60)
flag = 0 # no
try:
if getpass.getpass('code: ') == gen_totp(TOTP_SECRET):
flag = 1 # yes
except BaseException:
flag = 2 # timeout,ctrl+c
signal.alarm(0)
return flag
def verify():
if len(sshClient := os.getenv('SSH_CLIENT', '').split()) != 3:
return True
user = os.getenv('USER', '')
tty = os.getenv('SSH_TTY', '').lstrip('/dev/')
with subprocess.Popen('who', stdout=subprocess.PIPE) as who:
while line := who.stdout.readline():
line = line.decode()
if user in line and sshClient[0] in line and (tty == '' or tty not in line):
return False
return True
def main():
if verify():
flag = 0
for _ in range(3):
if (flag := read_totp_code()) > 0:
break
print('Login incorrect')
if flag != 1:
return
sys.argv[0] = 'bash'
subprocess.call(sys.argv, stdin=sys.stdin, stdout=sys.stdout, stderr=sys.stderr)
main()
except BaseException as e:
base = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(base, 'login.log'), 'w') as fw:
fw.write(str(e))
- 修改
/etc/passwd
文件,将你希望登陆的用户的默认shell
改为/bin/login
# 如下所示修改了root的默认shell
vim /etc/passwd
root:x:0:0:root:/root:/bin/login
- 然后重新登陆
ssh
,此时需要输入2fa
验证码才能成功。上面代码做了3次错误输入错误自动退出ssh
登陆状态,超过60秒未输入任何字符也自动退出ssh
登陆状态。注意到verify()
方法,是为了ssh登陆后相同公网ip
客户端登陆ssh
时不需要重复输入2fa
验证码,我这样做是为了方便vscode
远程或scp
等其他不方便输入验证码的客户端免密登陆。当然服务器判断没有任何该公网ip
客户端时需要输入验证码。需要注意这行代码:sys.argv[0] = 'bash'
,表示成功输入验证码后打开的shell
,可自行修改。
版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Windows上安装 Python 环境并配置环境变量 (超详细教程)