Wrote buffer overflow fuzz tests

Change-Id: Iac281dfdca53437102137112f115f2a4e0862c13
This commit is contained in:
Michael Dong 2016-01-29 01:23:21 -06:00 committed by michael.dong@rackspace.com
parent 372b1f6e58
commit 0aa769b56a
2 changed files with 79 additions and 0 deletions

0
data/buffer-overflow.txt Normal file
View File

View File

@ -0,0 +1,79 @@
"""
Copyright 2016 Rackspace
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
from syntribos.issue import Issue
from syntribos.tests.fuzz import base_fuzz
class BufferOverflowBody(base_fuzz.BaseFuzzTestCase):
test_name = "BUFFER_OVERFLOW_BODY"
test_type = "data"
data_key = "buffer-overflow.txt"
failure_keys = [
'fatal',
'warning',
'error',
'exception',
'fail',
'not found',
'unknown'
]
def data_driven_failure_cases(self):
if self.failure_keys is None:
return []
failure_assertions = []
for line in self.failure_keys:
failure_assertions.append((self.assertNotIn,
line, self.resp.content))
return failure_assertions
@classmethod
def _get_strings(cls, file_name=None):
return [
"A" * (2 ** 16 + 1),
"%%s" * 513,
"%d" % 0x7fffffff,
]
def test_case(self):
self.register_default_tests()
self.register_issue(
Issue(test="buffer_overflow",
severity="Medium",
confidence="Low",
text=("A string known to be commonly returned after a "
"successful buffer overflow attack was included "
"in the response. This could indicate a "
"vulnerability to buffer overflow attacks."),
assertions=self.data_driven_failure_cases()))
self.test_issues()
class BufferOverflowParams(BufferOverflowBody):
test_name = "BUFFER_OVERFLOW_PARAMS"
test_type = "params"
class BufferOverflowHeaders(BufferOverflowBody):
test_name = "BUFFER_OVERFLOW_HEADERS"
test_type = "headers"
class BufferOverflowURL(BufferOverflowBody):
test_name = "BUFFER_OVERFLOW_URL"
test_type = "url"
url_var = "FUZZ"