Skip to content

yetsing/python-ssh-protocol

Repository files navigation

python-ssh-protocol

python ssh protocol implement

python 实现 ssh 协议,仅做学习交流使用,请不要用于生产环境。

暂时只实现了 ssh server 。

ssh server

  • 运行 server
python ssh_server.py

他会使用 ssk-keygen 在项目根目录下生成 host key 和 moduli ,位于 etc/ssh

使用 ssh 客户端连接

bash test_ssh_cli.sh

# 或者
ssh -v test@127.0.0.1 -p 10022
  • umac 支持

需要编译 C 扩展

cd umac
python setup.py build_ext --inplace
cd ..
  • 其他

关于 ssh 的流程可以找到博客文章说明,但是关于实现的细节就少之又少。

主要参考以下项目

go ssh

python paramiko

openssh

讨论 ssh 的安全性

https://blog.stribik.technology/2015/01/04/secure-secure-shell.html

  • 开发环境

Ubuntu 20.04

Python 3.7.16

OpenSSH_8.2p1 Ubuntu-4ubuntu0.7, OpenSSL 1.1.1f 31 Mar 2020

Releases

No releases published

Packages

No packages published

Languages