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
cd3dca8d
Unverified
Commit
cd3dca8d
authored
Oct 28, 2019
by
Eric_Lee
Committed by
GitHub
Oct 28, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #122 from jumpserver/bugfix_remoteip
[Bugfix] fix web ssh remote ip
parents
c24324c2
5c86d4b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
websshws.go
pkg/httpd/websshws.go
+14
-2
No files found.
pkg/httpd/websshws.go
View file @
cd3dca8d
...
...
@@ -119,9 +119,21 @@ func OnHostHandler(c *neffos.NSConn, msg neffos.Message) (err error) {
c
.
Emit
(
"data"
,
neffos
.
Marshal
(
dataMsg
))
return
}
userR
,
userW
:=
io
.
Pipe
()
addr
,
_
,
_
:=
net
.
SplitHostPort
(
cc
.
Socket
()
.
Request
()
.
RemoteAddr
)
var
addr
string
request
:=
cc
.
Socket
()
.
Request
()
header
:=
request
.
Header
remoteAddr
:=
header
.
Get
(
"X-Forwarded-For"
)
if
remoteAddr
==
""
{
if
host
,
_
,
err
:=
net
.
SplitHostPort
(
request
.
RemoteAddr
);
err
==
nil
{
addr
=
host
}
else
{
addr
=
request
.
RemoteAddr
}
}
else
{
addr
=
strings
.
Split
(
remoteAddr
,
","
)[
0
]
}
client
:=
&
Client
{
Uuid
:
roomID
,
addr
:
addr
,
WinChan
:
make
(
chan
ssh
.
Window
,
100
),
Conn
:
c
,
...
...
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