FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ssh2-python/examples/example_echo.py at master · braincore/ssh2-python · GitHub
braincore
/
ssh2-python
Public
forked from
ParallelSSH/ssh2-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ssh2-python
/
examples
/
example_echo.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (45 loc) · 1.19 KB
Breadcrumbs
ssh2-python
/
examples
/
example_echo.py
Copy path
File metadata and controls
58 lines (45 loc) · 1.19 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from
__future__
import
print_function
import
os
import
socket
from
ssh2
.
session
import
Session
from
ssh2
.
utils
import
version
# Connection settings
host
=
'localhost'
user
=
os
.
getlogin
()
# Make socket, connect
sock
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
sock
.
connect
((
host
,
22
))
# Initialise
session
=
Session
()
session
.
handshake
(
sock
)
# List available authentication methods
print
(
session
.
userauth_list
(
user
))
# Convenience function for agent based authentication
session
.
agent_auth
(
user
)
# Agent capabilities
agent
=
session
.
agent_init
()
agent
.
connect
()
identities
=
agent
.
get_identities
()
print
(
identities
)
print
(
identities
[
0
].
magic
)
del
agent
# Public key blob available as identities[0].blob
# Channel initialise, exec and wait for end
channel
=
session
.
open_session
()
channel
.
execute
(
'echo me'
)
channel
.
wait_eof
()
channel
.
close
()
channel
.
wait_closed
()
# Get exit status
print
(
"Exit status: %s"
%
channel
.
get_exit_status
())
# Print output
size
,
data
=
channel
.
read
()
while
size
>
0
:
print
(
data
)
size
,
data
=
channel
.
read
()
# SFTP capabilities, uncomment and enter a filename
# sftp = session.sftp_init()
# fh = sftp.open('<my file>', 0, 0)
# for data in fh:
# pass
# del session
Back
|
FazBrowse Home
|
New Git URL