Browse Source

Fixed incorrect handling of dashes inside the JSON payload of a packet (Fixes #675)

pull/683/head
Miguel Grinberg 4 years ago
parent
commit
f4e101079f
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 4
      socketio/packet.py
  2. 7
      tests/common/test_packet.py

4
socketio/packet.py

@ -79,10 +79,10 @@ class Packet(object):
self.data = None
ep = ep[1:]
dash = ep.find('-')
if dash > 10:
raise ValueError('too many attachments')
attachment_count = 0
if dash > 0 and ep[0:dash].isdigit():
if dash > 10:
raise ValueError('too many attachments')
attachment_count = int(ep[0:dash])
ep = ep[dash + 1:]
if ep and ep[0:1] == '/':

7
tests/common/test_packet.py

@ -261,7 +261,12 @@ class TestPacket(unittest.TestCase):
def test_decode_attachment_count_too_long(self):
with pytest.raises(ValueError):
packet.Packet(encoded_packet='6' + ('1' * 11) + '-{"a":"123}')
packet.Packet(encoded_packet='6' + ('1' * 11) + '-{"a":"123"}')
def test_decode_dash_in_payload(self):
pkt = packet.Packet(encoded_packet='6{"a":"0123456789-"}')
assert pkt.data["a"] == "0123456789-"
assert pkt.attachment_count == 0
def test_data_is_binary_list(self):
pkt = packet.Packet()

Loading…
Cancel
Save