mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
test long-line DoS attacks
This commit is contained in:
19
irctest/server_tests/test_readq.py
Normal file
19
irctest/server_tests/test_readq.py
Normal file
@ -0,0 +1,19 @@
|
||||
from irctest import cases
|
||||
|
||||
|
||||
class ReadqTestCase(cases.BaseServerTestCase):
|
||||
"""Test responses to DoS attacks using long lines."""
|
||||
|
||||
@cases.SpecificationSelector.requiredBySpecification('Oragono')
|
||||
def testReadqTags(self):
|
||||
self.connectClient('mallory', name='mallory', capabilities=['message-tags'])
|
||||
self.joinChannel('mallory', '#test')
|
||||
self.sendLine('mallory', 'PRIVMSG #test ' + 'a' * 16384)
|
||||
self.assertDisconnected('mallory')
|
||||
|
||||
@cases.SpecificationSelector.requiredBySpecification('Oragono')
|
||||
def testReadqNoTags(self):
|
||||
self.connectClient('mallory', name='mallory')
|
||||
self.joinChannel('mallory', '#test')
|
||||
self.sendLine('mallory', 'PRIVMSG #test ' + 'a' * 16384)
|
||||
self.assertDisconnected('mallory')
|
Reference in New Issue
Block a user