Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wspy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
wspy
Commits
a215384a
Commit
a215384a
authored
Jul 26, 2013
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for Origin checking (both client- and server-side)
parent
b5619042
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
6 deletions
+28
-6
websocket.py
websocket.py
+28
-6
No files found.
websocket.py
View file @
a215384a
...
...
@@ -42,8 +42,8 @@ class websocket(object):
>>> sock.connect(('', 8000))
>>> sock.send(twspy.Frame(twspy.OPCODE_TEXT, 'Hello, Server!'))
"""
def
__init__
(
self
,
sock
=
None
,
protocols
=
[],
extensions
=
[],
sfamily
=
socket
.
AF_INET
,
sproto
=
0
):
def
__init__
(
self
,
sock
=
None
,
protocols
=
[],
extensions
=
[],
origin
=
None
,
trusted_origins
=
[],
sfamily
=
socket
.
AF_INET
,
sproto
=
0
):
"""
Create a regular TCP socket of family `family` and protocol
...
...
@@ -54,10 +54,20 @@ class websocket(object):
`extensions` is a list of supported extensions.
`origin` (for client sockets) is the value for the "Origin" header sent
in a client handshake .
`trusted_origins` (for servere sockets) is a list of expected values
for the "Origin" header sent by a client. If the received Origin header
has value not in this list, a HandshakeError is raised. If the list is
empty (default), all origins are excepted.
`sfamily` and `sproto` are used for the regular socket constructor.
"""
self
.
protocols
=
protocols
self
.
extensions
=
extensions
self
.
origin
=
origin
self
.
trusted_origins
=
trusted_origins
self
.
sock
=
sock
or
socket
.
socket
(
sfamily
,
socket
.
SOCK_STREAM
,
sproto
)
self
.
secure
=
False
self
.
handshake_started
=
False
...
...
@@ -184,10 +194,20 @@ class websocket(object):
if
'upgrade'
not
in
header
(
'Connection'
).
lower
():
fail
(
'"Connection" header must contain "Upgrade"'
)
# Origin must be present if browser client
if
'User-Agent'
in
header_names
and
'Origin'
not
in
header_names
:
# Origin must be present if browser client, and must match the list of
# trusted origins
if
'Origin'
not
in
header_names
:
if
'User-Agent'
in
header_names
:
fail
(
'browser client must specify "Origin" header'
)
if
self
.
trusted_origins
:
fail
(
'no "Origin" header specified, assuming untrusted'
)
elif
self
.
trusted_origins
:
origin
=
header
(
'Origin'
)
if
origin
not
in
self
.
trusted_origins
:
fail
(
'untrusted origin "%s"'
%
origin
)
# Only supported protocols are returned
client_protocols
=
split_stripped
(
header
(
'Sec-WebSocket-Extensions'
))
protocol
=
'null'
...
...
@@ -241,9 +261,11 @@ class websocket(object):
shake
+=
'Upgrade: websocket
\
r
\
n
'
shake
+=
'Connection: keep-alive, Upgrade
\
r
\
n
'
shake
+=
'Sec-WebSocket-Key: %s
\
r
\
n
'
%
key
shake
+=
'Origin: null
\
r
\
n
'
# FIXME: is this correct/necessary?
shake
+=
'Sec-WebSocket-Version: %s
\
r
\
n
'
%
WS_VERSION
if
self
.
origin
:
shake
+=
'Origin: %s
\
r
\
n
'
%
self
.
origin
# These are for eagerly caching webservers
shake
+=
'Pragma: no-cache
\
r
\
n
'
shake
+=
'Cache-Control: no-cache
\
r
\
n
'
...
...
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