Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
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
koko
Commits
534de754
Unverified
Commit
534de754
authored
Dec 11, 2019
by
Eric_Lee
Committed by
GitHub
Dec 11, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #174 from jumpserver/v54_bugfix
[Bugfix] fix regex or no system user panic err
parents
23952a5f
0fe3b12b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
5 deletions
+16
-5
sftpvolume.go
pkg/httpd/sftpvolume.go
+11
-3
proxy.go
pkg/proxy/proxy.go
+4
-1
telnetconn.go
pkg/srvconn/telnetconn.go
+1
-1
No files found.
pkg/httpd/sftpvolume.go
View file @
534de754
...
...
@@ -7,6 +7,7 @@ import (
"path/filepath"
"strings"
"sync"
"time"
"github.com/LeeEirc/elfinder"
"github.com/pkg/sftp"
...
...
@@ -300,17 +301,24 @@ func (u *UserVolume) Paste(dir, filename, suffix string, reader io.ReadCloser) (
func
(
u
*
UserVolume
)
RootFileDir
()
elfinder
.
FileDir
{
logger
.
Debug
(
"Root File Dir"
)
fInfo
,
_
:=
u
.
UserSftp
.
Stat
(
u
.
basePath
)
var
(
size
int64
)
tz
:=
time
.
Now
()
.
UnixNano
()
if
fInfo
,
err
:=
u
.
UserSftp
.
Stat
(
u
.
basePath
);
err
==
nil
{
size
=
fInfo
.
Size
()
tz
=
fInfo
.
ModTime
()
.
Unix
()
}
var
rest
elfinder
.
FileDir
rest
.
Name
=
u
.
Homename
rest
.
Hash
=
hashPath
(
u
.
Uuid
,
"/"
)
rest
.
Size
=
fInfo
.
Size
()
rest
.
Size
=
size
rest
.
Volumeid
=
u
.
Uuid
rest
.
Mime
=
"directory"
rest
.
Dirs
=
1
rest
.
Read
,
rest
.
Write
=
1
,
1
rest
.
Locked
=
1
rest
.
Ts
=
fInfo
.
ModTime
()
.
Unix
()
rest
.
Ts
=
tz
return
rest
}
...
...
pkg/proxy/proxy.go
View file @
534de754
...
...
@@ -116,7 +116,10 @@ func (p *ProxyServer) getSSHConn() (srvConn *srvconn.ServerSSHConnection, err er
func
(
p
*
ProxyServer
)
getTelnetConn
()
(
srvConn
*
srvconn
.
ServerTelnetConnection
,
err
error
)
{
conf
:=
config
.
GetConf
()
cusString
:=
conf
.
TelnetRegex
pattern
,
_
:=
regexp
.
Compile
(
cusString
)
pattern
,
err
:=
regexp
.
Compile
(
cusString
)
if
err
!=
nil
{
logger
.
Errorf
(
"compile telnet Regex %s err %s"
,
cusString
,
err
)
}
srvConn
=
&
srvconn
.
ServerTelnetConnection
{
User
:
p
.
User
,
Asset
:
p
.
Asset
,
...
...
pkg/srvconn/telnetconn.go
View file @
534de754
...
...
@@ -132,7 +132,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
return
AuthSuccess
}
if
tc
.
CustomString
!=
""
{
if
tc
.
CustomSuccessPattern
.
Match
(
data
)
{
if
tc
.
CustomSuccessPattern
!=
nil
&&
tc
.
CustomSuccessPattern
.
Match
(
data
)
{
return
AuthSuccess
}
}
...
...
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