Fixed a few nitpicks in the code base

Replaced `None` with `{}` in http/models.py
Removed urllib disable warnings.
Changed `sql_strings` to `bof_strings`
Removed `as` in import statement in runner.py
Removed non needed new line in arguments.py

Change-Id: I6f5285b446bd44054360ae7bfc6c1893c1341f03
This commit is contained in:
Rahul U Nair 2016-05-09 15:13:11 -05:00 committed by Michael Dong
parent 0b038c83cb
commit 21a8c43dab
5 changed files with 9 additions and 16 deletions

View File

@ -58,7 +58,6 @@ class InputType(object):
class SyntribosCLI(argparse.ArgumentParser):
"""Class for parsing Syntribos command-line arguments."""
def __init__(self, *args, **kwargs):

View File

@ -134,11 +134,11 @@ class RequestObject(object):
"""An object that holds information about an HTTP request."""
def __init__(
self, method, url, action_field=None, headers=None, params=None,
data=None):
self, method, url, action_field={}, headers={}, params={},
data={}):
self.method = method
self.url = url
self.headers = headers or {}
self.params = params or {}
self.data = data
self.action_field = action_field
self.headers = headers
self.params = params
self.data = data

View File

@ -17,14 +17,8 @@ import sys
import time
import unittest
import requests
from cafe.common.reporting.cclogging import(
init_root_log_handler as init_root_log_handler
)
from cafe.configurator.managers import(
TestEnvManager as TestEnvManager
)
from cafe.common.reporting.cclogging import init_root_log_handler
from cafe.configurator.managers import TestEnvManager
import cafe.drivers.base
import syntribos.arguments
@ -112,7 +106,6 @@ class Runner(object):
@classmethod
def run(cls):
global result
requests.packages.urllib3.disable_warnings()
try:
cls.print_symbol()
usage = """

View File

@ -134,6 +134,7 @@ class BaseFuzzTestCase(base.BaseTestCase):
self.test_default_issues() in order to test for the Issues
defined here
"""
if self.resp.status_code >= 500:
self.register_issue(
Issue(test="500_errors",

View File

@ -42,7 +42,7 @@ class BufferOverflowBody(base_fuzz.BaseFuzzTestCase):
failed_strings = self.data_driven_failure_cases()
if failed_strings:
self.register_issue(
Issue(test="sql_strings",
Issue(test="bof_strings",
severity="Medium",
confidence="Low",
text=("The string(s): \'{0}\', known to be commonly "