Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
coco
Commits
11dae336
Commit
11dae336
authored
Jul 24, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 解决sftp登录,绕过校验系统用户手动登录的情况3
parent
e1eaaf8c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
20 deletions
+21
-20
proxy.py
coco/proxy.py
+2
-1
sftp.py
coco/sftp.py
+19
-19
No files found.
coco/proxy.py
View file @
11dae336
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
import
threading
import
threading
import
time
import
time
import
copy
from
.session
import
Session
from
.session
import
Session
from
.models
import
Server
,
TelnetServer
from
.models
import
Server
,
TelnetServer
...
@@ -27,7 +28,7 @@ class ProxyServer:
...
@@ -27,7 +28,7 @@ class ProxyServer:
def
__init__
(
self
,
client
,
asset
,
system_user
):
def
__init__
(
self
,
client
,
asset
,
system_user
):
self
.
client
=
client
self
.
client
=
client
self
.
asset
=
asset
self
.
asset
=
asset
self
.
system_user
=
system_user
self
.
system_user
=
copy
.
deepcopy
(
system_user
)
self
.
server
=
None
self
.
server
=
None
self
.
connecting
=
True
self
.
connecting
=
True
...
...
coco/sftp.py
View file @
11dae336
...
@@ -120,27 +120,27 @@ class SFTPServer(paramiko.SFTPServerInterface):
...
@@ -120,27 +120,27 @@ class SFTPServer(paramiko.SFTPServerInterface):
raise
PermissionError
(
"No asset or system user explicit"
)
raise
PermissionError
(
"No asset or system user explicit"
)
cache_key
=
'{}@{}'
.
format
(
su
,
host
)
cache_key
=
'{}@{}'
.
format
(
su
,
host
)
if
cache_key
not
in
self
.
_sftp
:
if
cache_key
in
self
.
_sftp
:
conn
=
SSHConnection
.
new_connection
(
self
.
server
.
connection
.
user
,
asset
,
system_user
)
__sftp
=
conn
.
get_sftp
()
if
__sftp
:
sftp
=
{
'client'
:
__sftp
,
'connection'
:
conn
,
'home'
:
__sftp
.
normalize
(
''
)
}
self
.
_sftp
[
cache_key
]
=
sftp
return
sftp
elif
system_user
.
login_mode
==
MANUAL_LOGIN
:
raise
PermissionError
(
"System user is in manual login mode, "
"please use SSH protocol to connect assets first."
)
else
:
raise
OSError
(
"Can not connect asset sftp server: {}"
.
format
(
conn
.
error
))
else
:
return
self
.
_sftp
[
cache_key
]
return
self
.
_sftp
[
cache_key
]
conn
=
SSHConnection
.
new_connection
(
self
.
server
.
connection
.
user
,
asset
,
system_user
)
__sftp
=
conn
.
get_sftp
()
if
__sftp
:
sftp
=
{
'client'
:
__sftp
,
'connection'
:
conn
,
'home'
:
__sftp
.
normalize
(
''
)
}
self
.
_sftp
[
cache_key
]
=
sftp
return
sftp
elif
system_user
.
login_mode
==
MANUAL_LOGIN
:
raise
PermissionError
(
"System user is in manual login mode, "
"please use SSH protocol to connect assets first."
)
else
:
raise
OSError
(
"Can not connect asset sftp server: {}"
.
format
(
conn
.
error
))
def
host_has_unique_su
(
self
,
host
):
def
host_has_unique_su
(
self
,
host
):
host_sus
=
self
.
get_host_system_users
(
host
,
only_name
=
True
)
host_sus
=
self
.
get_host_system_users
(
host
,
only_name
=
True
)
logger
.
debug
(
"Host system users: {}"
.
format
(
host_sus
))
logger
.
debug
(
"Host system users: {}"
.
format
(
host_sus
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment