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
b5a217ef
Unverified
Commit
b5a217ef
authored
Dec 05, 2019
by
Eric_Lee
Committed by
GitHub
Dec 05, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #165 from jumpserver/dev_bugfix
[Bugfix] fix telnet login regex panic err
parents
6a4c5d11
436c3398
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
proxy.go
pkg/proxy/proxy.go
+4
-1
telnetconn.go
pkg/srvconn/telnetconn.go
+1
-1
No files found.
pkg/proxy/proxy.go
View file @
b5a217ef
...
...
@@ -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
(
"telnet custom regex %s compile err: %s"
,
cusString
,
err
)
}
srvConn
=
&
srvconn
.
ServerTelnetConnection
{
User
:
p
.
User
,
Asset
:
p
.
Asset
,
...
...
pkg/srvconn/telnetconn.go
View file @
b5a217ef
...
...
@@ -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