Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
webssh
Overview
Overview
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
郑天保
webssh
Commits
77b6fbfd
Commit
77b6fbfd
authored
Oct 15, 2018
by
Sheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Block requests not come from trusted_downstream and public non-https requests
parent
db3ee2b7
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
82 additions
and
6 deletions
+82
-6
.travis.yml
.travis.yml
+1
-0
test_handler.py
tests/test_handler.py
+44
-0
handler.py
webssh/handler.py
+23
-1
main.py
webssh/main.py
+5
-5
settings.py
webssh/settings.py
+9
-0
No files found.
.travis.yml
View file @
77b6fbfd
...
...
@@ -15,6 +15,7 @@ matrix:
install
:
-
pip install -r requirements.txt
-
pip install pytest pytest-cov codecov flake8
-
if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install mock; fi
script
:
-
pytest --cov=webssh
...
...
tests/test_handler.py
View file @
77b6fbfd
import
unittest
import
paramiko
from
tornado.httpclient
import
HTTPRequest
from
tornado.httputil
import
HTTPServerRequest
from
tornado.web
import
HTTPError
from
tests.utils
import
read_file
,
make_tests_data_path
from
webssh.handler
import
MixinHandler
,
IndexHandler
,
InvalidValueError
try
:
from
unittest.mock
import
Mock
except
ImportError
:
from
mock
import
Mock
class
TestMixinHandler
(
unittest
.
TestCase
):
def
test_is_forbidden
(
self
):
handler
=
MixinHandler
()
request
=
HTTPRequest
(
'http://example.com/'
)
handler
.
request
=
request
context
=
Mock
(
address
=
(
'8.8.8.8'
,
8888
),
trusted_downstream
=
[
'127.0.0.1'
],
_orig_protocol
=
'http'
)
request
.
connection
=
Mock
(
context
=
context
)
self
.
assertTrue
(
handler
.
is_forbidden
())
context
=
Mock
(
address
=
(
'8.8.8.8'
,
8888
),
trusted_downstream
=
[],
_orig_protocol
=
'http'
)
request
.
connection
=
Mock
(
context
=
context
)
self
.
assertTrue
(
handler
.
is_forbidden
())
context
=
Mock
(
address
=
(
'192.168.1.1'
,
8888
),
trusted_downstream
=
[],
_orig_protocol
=
'http'
)
request
.
connection
=
Mock
(
context
=
context
)
self
.
assertIsNone
(
handler
.
is_forbidden
())
context
=
Mock
(
address
=
(
'8.8.8.8'
,
8888
),
trusted_downstream
=
[],
_orig_protocol
=
'https'
)
request
.
connection
=
Mock
(
context
=
context
)
self
.
assertIsNone
(
handler
.
is_forbidden
())
def
test_get_real_client_addr
(
self
):
x_forwarded_for
=
'1.1.1.1'
x_forwarded_port
=
1111
...
...
webssh/handler.py
View file @
77b6fbfd
...
...
@@ -13,7 +13,7 @@ from tornado.ioloop import IOLoop
from
webssh.settings
import
swallow_http_errors
from
webssh.utils
import
(
is_valid_ip_address
,
is_valid_port
,
is_valid_hostname
,
to_bytes
,
to_str
,
to_int
,
UnicodeType
to_bytes
,
to_str
,
to_int
,
to_ip_address
,
UnicodeType
)
from
webssh.worker
import
Worker
,
recycle_worker
,
workers
...
...
@@ -39,6 +39,28 @@ class InvalidValueError(Exception):
class
MixinHandler
(
object
):
def
prepare
(
self
):
if
self
.
is_forbidden
():
raise
tornado
.
web
.
HTTPError
(
403
)
def
is_forbidden
(
self
):
"""
Following requests are forbidden:
* requests not come from trusted_downstream (if set).
* non-https requests from a public network.
"""
context
=
self
.
request
.
connection
.
context
ip
=
context
.
address
[
0
]
lst
=
context
.
trusted_downstream
if
lst
and
ip
not
in
lst
:
return
True
if
context
.
_orig_protocol
==
'http'
:
ipaddr
=
to_ip_address
(
ip
)
if
ipaddr
.
is_global
:
return
True
def
set_default_headers
(
self
):
self
.
set_header
(
'Server'
,
'TornadoServer'
)
...
...
webssh/main.py
View file @
77b6fbfd
...
...
@@ -6,7 +6,7 @@ from tornado.options import options
from
webssh.handler
import
IndexHandler
,
WsockHandler
from
webssh.settings
import
(
get_app_settings
,
get_host_keys_settings
,
get_policy_setting
,
get_ssl_context
,
max_body_size
,
xheader
s
get_ssl_context
,
get_server_setting
s
)
...
...
@@ -31,12 +31,12 @@ def main():
loop
=
tornado
.
ioloop
.
IOLoop
.
current
()
app
=
make_app
(
make_handlers
(
loop
,
options
),
get_app_settings
(
options
))
ssl_ctx
=
get_ssl_context
(
options
)
kwargs
=
dict
(
xheaders
=
xheaders
,
max_body_size
=
max_body_size
)
app
.
listen
(
options
.
port
,
options
.
address
,
**
kwar
gs
)
server_settings
=
get_server_settings
(
options
)
app
.
listen
(
options
.
port
,
options
.
address
,
**
server_settin
gs
)
logging
.
info
(
'Listening on {}:{}'
.
format
(
options
.
address
,
options
.
port
))
if
ssl_ctx
:
kwar
gs
.
update
(
ssl_options
=
ssl_ctx
)
app
.
listen
(
options
.
sslPort
,
options
.
sslAddress
,
**
kwar
gs
)
server_settin
gs
.
update
(
ssl_options
=
ssl_ctx
)
app
.
listen
(
options
.
sslPort
,
options
.
sslAddress
,
**
server_settin
gs
)
logging
.
info
(
'Listening on ssl {}:{}'
.
format
(
options
.
sslAddress
,
options
.
sslPort
))
loop
.
start
()
...
...
webssh/settings.py
View file @
77b6fbfd
...
...
@@ -51,6 +51,15 @@ def get_app_settings(options):
return
settings
def
get_server_settings
(
options
):
settings
=
dict
(
xheaders
=
xheaders
,
max_body_size
=
max_body_size
,
trusted_downstream
=
get_trusted_downstream
(
options
)
)
return
settings
def
get_host_keys_settings
(
options
):
if
not
options
.
hostFile
:
host_keys_filename
=
os
.
path
.
join
(
base_dir
,
'known_hosts'
)
...
...
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