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
a246ff2d
Commit
a246ff2d
authored
Jul 24, 2019
by
BaiJiangJie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 解决sftp登录,绕过校验系统用户手动登录的情况
parent
8b1eab83
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
5 deletions
+21
-5
connection.py
coco/connection.py
+4
-0
const.py
coco/const.py
+6
-0
proxy.py
coco/proxy.py
+7
-5
sftp.py
coco/sftp.py
+4
-0
No files found.
coco/connection.py
View file @
a246ff2d
...
@@ -4,6 +4,8 @@
...
@@ -4,6 +4,8 @@
import
re
import
re
import
socket
import
socket
import
telnetlib
import
telnetlib
from
.const
import
MANUAL_LOGIN
try
:
try
:
import
selectors
import
selectors
...
@@ -87,6 +89,8 @@ class SSHConnection:
...
@@ -87,6 +89,8 @@ class SSHConnection:
获取系统用户的认证信息,密码或秘钥
获取系统用户的认证信息,密码或秘钥
:return: system user have full info
:return: system user have full info
"""
"""
if
self
.
system_user
.
login_mode
==
MANUAL_LOGIN
:
return
password
,
private_key
=
\
password
,
private_key
=
\
app_service
.
get_system_user_auth_info
(
self
.
system_user
,
self
.
asset
)
app_service
.
get_system_user_auth_info
(
self
.
system_user
,
self
.
asset
)
self
.
system_user
.
password
=
password
self
.
system_user
.
password
=
password
...
...
coco/const.py
View file @
a246ff2d
...
@@ -8,3 +8,9 @@ PERMS_ACTION_NAME_ALL = 'all'
...
@@ -8,3 +8,9 @@ PERMS_ACTION_NAME_ALL = 'all'
PERMS_ACTION_NAME_CONNECT
=
'connect'
PERMS_ACTION_NAME_CONNECT
=
'connect'
PERMS_ACTION_NAME_UPLOAD_FILE
=
'upload_file'
PERMS_ACTION_NAME_UPLOAD_FILE
=
'upload_file'
PERMS_ACTION_NAME_DOWNLOAD_FILE
=
'download_file'
PERMS_ACTION_NAME_DOWNLOAD_FILE
=
'download_file'
#
# System User login mode choices
#
MANUAL_LOGIN
=
'manual'
AUTO_LOGIN
=
'auto'
coco/proxy.py
View file @
a246ff2d
...
@@ -7,18 +7,20 @@ import time
...
@@ -7,18 +7,20 @@ import time
from
.session
import
Session
from
.session
import
Session
from
.models
import
Server
,
TelnetServer
from
.models
import
Server
,
TelnetServer
from
.const
import
PERMS_ACTION_NAME_CONNECT
from
.const
import
(
PERMS_ACTION_NAME_CONNECT
,
MANUAL_LOGIN
)
from
.connection
import
SSHConnection
,
TelnetConnection
from
.connection
import
SSHConnection
,
TelnetConnection
from
.service
import
app_service
from
.service
import
app_service
from
.conf
import
config
from
.conf
import
config
from
.utils
import
wrap_with_line_feed
as
wr
,
wrap_with_warning
as
warning
,
\
from
.utils
import
(
get_logger
,
net_input
,
ugettext
as
_
,
ignore_error
wrap_with_line_feed
as
wr
,
wrap_with_warning
as
warning
,
ugettext
as
_
,
get_logger
,
net_input
,
ignore_error
)
logger
=
get_logger
(
__file__
)
logger
=
get_logger
(
__file__
)
BUF_SIZE
=
4096
BUF_SIZE
=
4096
MANUAL_LOGIN
=
'manual'
AUTO_LOGIN
=
'auto'
class
ProxyServer
:
class
ProxyServer
:
...
...
coco/sftp.py
View file @
a246ff2d
...
@@ -118,6 +118,10 @@ class SFTPServer(paramiko.SFTPServerInterface):
...
@@ -118,6 +118,10 @@ class SFTPServer(paramiko.SFTPServerInterface):
if
not
asset
or
not
system_user
:
if
not
asset
or
not
system_user
:
raise
PermissionError
(
"No asset or system user explicit"
)
raise
PermissionError
(
"No asset or system user explicit"
)
if
system_user
.
login_mode
==
'manual'
:
raise
PermissionError
(
"System user is in manual login mode, please "
"use SSH protocol to connect assets first."
)
cache_key
=
'{}@{}'
.
format
(
su
,
host
)
cache_key
=
'{}@{}'
.
format
(
su
,
host
)
if
cache_key
not
in
self
.
_sftp
:
if
cache_key
not
in
self
.
_sftp
:
conn
=
SSHConnection
.
new_connection
(
self
.
server
.
connection
.
user
,
conn
=
SSHConnection
.
new_connection
(
self
.
server
.
connection
.
user
,
...
...
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