Unverified Commit b5a217ef authored by Eric_Lee's avatar Eric_Lee Committed by GitHub

Merge pull request #165 from jumpserver/dev_bugfix

[Bugfix] fix telnet login regex panic err
parents 6a4c5d11 436c3398
...@@ -116,7 +116,10 @@ func (p *ProxyServer) getSSHConn() (srvConn *srvconn.ServerSSHConnection, err er ...@@ -116,7 +116,10 @@ func (p *ProxyServer) getSSHConn() (srvConn *srvconn.ServerSSHConnection, err er
func (p *ProxyServer) getTelnetConn() (srvConn *srvconn.ServerTelnetConnection, err error) { func (p *ProxyServer) getTelnetConn() (srvConn *srvconn.ServerTelnetConnection, err error) {
conf := config.GetConf() conf := config.GetConf()
cusString := conf.TelnetRegex 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{ srvConn = &srvconn.ServerTelnetConnection{
User: p.User, User: p.User,
Asset: p.Asset, Asset: p.Asset,
......
...@@ -132,7 +132,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus { ...@@ -132,7 +132,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
return AuthSuccess return AuthSuccess
} }
if tc.CustomString != "" { if tc.CustomString != "" {
if tc.CustomSuccessPattern.Match(data) { if tc.CustomSuccessPattern != nil && tc.CustomSuccessPattern.Match(data) {
return AuthSuccess return AuthSuccess
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment