Browse Source

Implement request padding to mitigate amplification attacks

Proposed in "RFC: Changes to the A2S_INFO protocol"
https://steamcommunity.com/discussions/forum/14/2989789048633291344/
padding
Gabriel Huber 4 years ago
parent
commit
a0bf5c7579
  1. 4
      README.md
  2. 4
      a2s/a2sasync.py
  3. 4
      a2s/a2sstream.py
  4. 2
      setup.py

4
README.md

@ -5,6 +5,10 @@ Impliments [Valve's Server Query Protocol](https://developer.valvesoftware.com/w
Rewrite of the [python-valve](https://github.com/serverstf/python-valve) module.
Supports both synchronous and asyncronous applications.
**This branch implements the 1200 Bytes padding proposed by Valve in
[a recent forum thread](https://steamcommunity.com/discussions/forum/14/2989789048633291344/).
Only use this for testing as not all servers are compatible yet!**
Official demo application: [Sourcequery](https://sourcequery.yepoleb.at)
## Requirements

4
a2s/a2sasync.py

@ -8,6 +8,7 @@ from a2s.a2sfragment import decode_fragment
HEADER_SIMPLE = b"\xFF\xFF\xFF\xFF"
HEADER_MULTI = b"\xFE\xFF\xFF\xFF"
MIN_PACKET_SIZE = 1200
logger = logging.getLogger("a2s")
@ -71,6 +72,9 @@ class A2SStreamAsync:
def send(self, payload):
packet = HEADER_SIMPLE + payload
padding_count = MIN_PACKET_SIZE - len(packet)
if padding_count > 0:
packet += b"\x00" * padding_count
self.transport.sendto(packet)
async def recv(self):

4
a2s/a2sstream.py

@ -8,6 +8,7 @@ from a2s.a2sfragment import decode_fragment
HEADER_SIMPLE = b"\xFF\xFF\xFF\xFF"
HEADER_MULTI = b"\xFE\xFF\xFF\xFF"
MIN_PACKET_SIZE = 1200
logger = logging.getLogger("a2s")
@ -22,6 +23,9 @@ class A2SStream:
def send(self, data):
packet = HEADER_SIMPLE + data
padding_count = MIN_PACKET_SIZE - len(packet)
if padding_count > 0:
packet += b"\x00" * padding_count
self._socket.sendto(packet, self.address)
def recv(self):

2
setup.py

@ -7,7 +7,7 @@ with open("README.md", "r") as readme:
setuptools.setup(
name="python-a2s",
version="1.2.1",
version="1.3.0",
author="Gabriel Huber",
author_email="[email protected]",
description="Query Source and GoldSource servers for name, map, players and more.",

Loading…
Cancel
Save