This is a SSH login tool
Installation
pip install --upgrade 0lever-so or pip install --upgrade 0lever-so -i https://pypi.org/simple/
Usage
# 初始化配置文件,升级无需初始化,chmod 400 ~/.so/keys/* ➜ ~ so_install ➜ ~ cd .so ➜ .so tree . ├── keys │ └── demo.pem └── password.yaml 1 directory, 2 files ➜ .so
# 配置文件
ssh:
- id: 1
name: demo1
user: fqiyou
password: xxx
host: 1.1.1.1
port: 20755
- id: 2
name: demo2
user: fqiyou
password: xxx
host: 1.1.1.1
port: 39986
- id: 3
name: demo3
user: root
password: demo.pem
host: 1.1.1.1
port: 22
Other-shell
#!/usr/bin/expect
set USER "xxx"
set PASSWD "xxx"
set timeout 10
trap {
set rows [stty rows]
set cols [stty columns]
stty rows $rows columns $cols < $spawn_out(slave,name)
} WINCH
spawn su - $USER
expect "Password: "
send "$PASSWD\n"
interact
#!/usr/bin/expect -f
set HOST [lindex $argv 0]
set USER [lindex $argv 1]
set PASSWD [lindex $argv 2]
set PORT [lindex $argv 3]
set timeout 10
trap {
set rows [stty rows]
set cols [stty columns]
stty rows $rows columns $cols < $spawn_out(slave,name)
} WINCH
spawn ssh $USER@HOST -p $PORT
expect {
"*yes/no" {send "yes\r"; exp_continue}
"*password:" {send "$PASSWD\r"}
}
interact
```
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
0lever_so-1.9.1.tar.gz
(4.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file 0lever_so-1.9.1.tar.gz.
File metadata
- Download URL: 0lever_so-1.9.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a73aa47155a773a414cc39940506ac839fa1c4caef1345c957a56ba2c800697f
|
|
| MD5 |
a738f3f36421ce378e308536633f102f
|
|
| BLAKE2b-256 |
b36ae02e3cf1313744104fd0e7c729a73b30c21f4d1d0bc3060d754f59d7f866
|
File details
Details for the file 0lever_so-1.9.1-py3-none-any.whl.
File metadata
- Download URL: 0lever_so-1.9.1-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c013e49d686026cc17b5497bf3f6a74864ae28ec564eb053a626430a16425c70
|
|
| MD5 |
1d0fe5bc8b7e8922a5fdbbf69bce84ee
|
|
| BLAKE2b-256 |
7635dd3d25a1a043d96ddd771e28095b61d8a780d9c1a91026fc71dfa6d86cb5
|