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
34df7fde
Commit
34df7fde
authored
Mar 18, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of github.com:jumpserver/coco into dev
parents
c99ce4f9
01df40d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
connection.py
coco/connection.py
+3
-3
proxy.py
coco/proxy.py
+1
-1
No files found.
coco/connection.py
View file @
34df7fde
...
...
@@ -25,13 +25,13 @@ AUTO_LOGIN = 'auto'
class
SSHConnection
:
@staticmethod
def
get_system_user_auth
(
system_user
):
def
get_system_user_auth
(
system_user
,
asset
):
"""
获取系统用户的认证信息,密码或秘钥
:return: system user have full info
"""
password
,
private_key
=
\
app_service
.
get_system_user_auth_info
(
system_user
)
app_service
.
get_system_user_auth_info
(
system_user
,
asset
)
system_user
.
password
=
password
system_user
.
private_key
=
private_key
...
...
@@ -42,7 +42,7 @@ class SSHConnection:
error
=
''
if
not
system_user
.
password
and
not
system_user
.
private_key
:
self
.
get_system_user_auth
(
system_user
)
self
.
get_system_user_auth
(
system_user
,
asset
)
if
asset
.
domain
:
sock
=
self
.
get_proxy_sock_v2
(
asset
)
...
...
coco/proxy.py
View file @
34df7fde
...
...
@@ -34,7 +34,7 @@ class ProxyServer:
:return: system user have full info
"""
password
,
private_key
=
\
app_service
.
get_system_user_auth_info
(
self
.
system_user
)
app_service
.
get_system_user_auth_info
(
self
.
system_user
,
self
.
asset
)
if
self
.
system_user
.
login_mode
==
MANUAL_LOGIN
\
or
(
not
password
and
not
private_key
):
prompt
=
"{}'s password: "
.
format
(
self
.
system_user
.
username
)
...
...
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