Browse Source

Configure the JSON decoder for safer parsing

pull/683/head
Miguel Grinberg 4 years ago
parent
commit
81b0b849bd
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 2
      setup.py
  2. 2
      socketio/asyncio_pubsub_manager.py
  3. 4
      socketio/packet.py
  4. 2
      socketio/pubsub_manager.py
  5. 2
      tests/asyncio/test_asyncio_server.py
  6. 2
      tests/common/test_client.py
  7. 5
      tests/common/test_packet.py
  8. 2
      tests/common/test_server.py

2
setup.py

@ -30,7 +30,7 @@ setup(
platforms='any', platforms='any',
install_requires=[ install_requires=[
'bidict>=0.21.0', 'bidict>=0.21.0',
'python-engineio>=4', 'python-engineio>=4.1.0',
], ],
extras_require={ extras_require={
'client': [ 'client': [

2
socketio/asyncio_pubsub_manager.py

@ -1,7 +1,7 @@
from functools import partial from functools import partial
import uuid import uuid
import json from engineio import json
import pickle import pickle
from .asyncio_manager import AsyncManager from .asyncio_manager import AsyncManager

4
socketio/packet.py

@ -1,5 +1,5 @@
import functools import functools
import json as _json from engineio import json as _json
(CONNECT, DISCONNECT, EVENT, ACK, CONNECT_ERROR, BINARY_EVENT, BINARY_ACK) = \ (CONNECT, DISCONNECT, EVENT, ACK, CONNECT_ERROR, BINARY_EVENT, BINARY_ACK) = \
(0, 1, 2, 3, 4, 5, 6) (0, 1, 2, 3, 4, 5, 6)
@ -79,6 +79,8 @@ class Packet(object):
self.data = None self.data = None
ep = ep[1:] ep = ep[1:]
dash = ep.find('-') dash = ep.find('-')
if dash > 10:
raise ValueError('too many attachments')
attachment_count = 0 attachment_count = 0
if dash > 0 and ep[0:dash].isdigit(): if dash > 0 and ep[0:dash].isdigit():
attachment_count = int(ep[0:dash]) attachment_count = int(ep[0:dash])

2
socketio/pubsub_manager.py

@ -1,7 +1,7 @@
from functools import partial from functools import partial
import uuid import uuid
import json from engineio import json
import pickle import pickle
from .base_manager import BaseManager from .base_manager import BaseManager

2
tests/asyncio/test_asyncio_server.py

@ -1,10 +1,10 @@
import asyncio import asyncio
import json
import logging import logging
import sys import sys
import unittest import unittest
from unittest import mock from unittest import mock
from engineio import json
import pytest import pytest
from socketio import asyncio_server from socketio import asyncio_server

2
tests/common/test_client.py

@ -1,10 +1,10 @@
import json
import logging import logging
import sys import sys
import unittest import unittest
from unittest import mock from unittest import mock
from engineio import exceptions as engineio_exceptions from engineio import exceptions as engineio_exceptions
from engineio import json
from engineio import packet as engineio_packet from engineio import packet as engineio_packet
import pytest import pytest

5
tests/common/test_packet.py

@ -165,6 +165,7 @@ class TestPacket(unittest.TestCase):
def test_decode_id_too_long(self): def test_decode_id_too_long(self):
with pytest.raises(ValueError): with pytest.raises(ValueError):
packet.Packet(encoded_packet='2' + '1' * 101) packet.Packet(encoded_packet='2' + '1' * 101)
with pytest.raises(ValueError):
packet.Packet(encoded_packet='2' + '1' * 101 + '["foo"]') packet.Packet(encoded_packet='2' + '1' * 101 + '["foo"]')
def test_encode_id_no_data(self): def test_encode_id_no_data(self):
@ -258,6 +259,10 @@ class TestPacket(unittest.TestCase):
with pytest.raises(ValueError): with pytest.raises(ValueError):
pkt.add_attachment(b'123') pkt.add_attachment(b'123')
def test_decode_attachment_count_too_long(self):
with pytest.raises(ValueError):
packet.Packet(encoded_packet='6' + ('1' * 11) + '-{"a":"123}')
def test_data_is_binary_list(self): def test_data_is_binary_list(self):
pkt = packet.Packet() pkt = packet.Packet()
assert not pkt._data_is_binary(['foo']) assert not pkt._data_is_binary(['foo'])

2
tests/common/test_server.py

@ -1,8 +1,8 @@
import json
import logging import logging
import unittest import unittest
from unittest import mock from unittest import mock
from engineio import json
import pytest import pytest
from socketio import exceptions from socketio import exceptions

Loading…
Cancel
Save