コード例 #1
0
 def test_download_s3_object_bucket_exception(self, mock_logger):  # pylint: disable=no-self-use
     """LookupTables - S3 bucket doesn't exist"""
     lookup_tables = LookupTables({'wrong_bucket': ['foo.json']})
     lookup_tables.download_s3_objects()
     mock_logger.assert_called_with(
         'Encounterred error while downloading %s from %s, %s', 'foo.json',
         'wrong_bucket', 'The specified bucket does not exist')
コード例 #2
0
 def test_load_lookup_tables_missing_buckets(self, log_mock):
     """LookupTables - Load Lookup Tables, Missing Buckets"""
     del self.config['global']['infrastructure']['lookup_tables']['buckets']
     self.config['global']['infrastructure']['lookup_tables'][
         'enabled'] = True
     LookupTables.load_lookup_tables(self.config)
     log_mock.assert_called_with('Buckets not defined')
コード例 #3
0
 def test_download_s3_object_bucket_timeout(self, mock_logger,
                                            mock_s3_conn):
     """LookupTables - Download S3 Object, ReadTimeoutError"""
     mock_s3_conn.side_effect = ReadTimeoutError('TestPool',
                                                 'Test Read timed out.',
                                                 endpoint_url='test/url')
     self.buckets_info['bucket_name'].pop()
     LookupTables._download_s3_objects(self.buckets_info)
     assert_equal(LookupTables._tables, {})
     mock_logger.assert_called_with('Reading %s from S3 timed out',
                                    'foo.json')
コード例 #4
0
    def test_load_lookup_tables(self, mock_logger):
        """LookupTables - Load lookup table"""
        self.config['global']['infrastructure']['lookup_tables']['enabled'] = True
        lookup_tables = LookupTables.load_lookup_tables(self.config)
        result = lookup_tables.download_s3_objects()

        assert_equal(result.get('foo'), {'bucket_name_key': 'foo_value'})
        assert_equal(result.get('bar'), {'bucket_name_key': 'bar_value'})
        assert_equal(result.get('not_exist'), None)

        LookupTables.load_lookup_tables(self.config)
        mock_logger.assert_called()
コード例 #5
0
 def test_download_s3_object(self):
     """LookupTables - Download S3 Object"""
     LookupTables._download_s3_objects(self.buckets_info)
     expected_result = {
         'foo': {
             'bucket_name_key': 'foo_value'
         },
         'bar': {
             'bucket_name_key': 'bar_value'
         }
     }
     assert_equal(LookupTables._tables, expected_result)
コード例 #6
0
    def test_load_lookup_tables_missing_config(self, mock_logger):
        """LookupTables - Load lookup tables with missing config"""
        # Remove lookup_tables config for this test case.
        self.config['global']['infrastructure'].pop('lookup_tables')
        lookup_tables = LookupTables.load_lookup_tables(self.config)
        assert_equal(lookup_tables, False)
        assert_equal(LookupTables._LOOKUP_TABLES_LAST_REFRESH,
                     datetime(year=1970, month=1, day=1))

        self.config['global']['infrastructure']['lookup_tables'] = {
            'cache_refresh_minutes': 10,
            'enabled': True
        }
        lookup_tables = LookupTables.load_lookup_tables(self.config)
        mock_logger.assert_called_with('Buckets not defined')
コード例 #7
0
 def setup(self):
     """LookupTables - Setup S3 bucket mocking"""
     # pylint: disable=attribute-defined-outside-init
     self.config = load_config('tests/unit/conf')
     self.lookup_tables = LookupTables(self.buckets_info)
     self.s3_mock = mock_s3()
     self.s3_mock.start()
     for bucket, files in self.buckets_info.iteritems():
         for json_file in files:
             put_mock_s3_object(
                 bucket, json_file,
                 json.dumps({
                     '{}_key'.format(bucket):
                     '{}_value'.format(os.path.splitext(json_file)[0])
                 }), self.region)
コード例 #8
0
 def test_load_lookup_tables_missing_config(self):
     """LookupTables - Load Lookup Tables, Missing Config"""
     # Remove lookup_tables config for this test case.
     self.config['global']['infrastructure'].pop('lookup_tables')
     lookup_tables = LookupTables.load_lookup_tables(self.config)
     assert_equal(lookup_tables, False)
     assert_equal(LookupTables._LOOKUP_TABLES_LAST_REFRESH,
                  datetime(year=1970, month=1, day=1))
コード例 #9
0
 def test_load_lookup_tables_no_refresh(self):
     """LookupTables - Load Lookup Table, No Refresh"""
     self.config['global']['infrastructure']['lookup_tables'][
         'enabled'] = True
     LookupTables._LOOKUP_TABLES_LAST_REFRESH = datetime.utcnow()
     with patch.object(LookupTables,
                       '_download_s3_objects') as download_mock:
         result = LookupTables.load_lookup_tables(self.config)
         download_mock.assert_not_called()
         assert_equal(result, LookupTables)
コード例 #10
0
    def __init__(self, config, *rule_paths):
        """Initialize a RulesEngine instance to cache a StreamThreatIntel instance."""

        self._threat_intel = StreamThreatIntel.load_from_config(config)
        self._required_outputs_set = resources.get_required_outputs()
        import_folders(*rule_paths)
        self._load_rule_table(config)
        lookup_tables = LookupTables.load_lookup_tables(config)
        if lookup_tables:
            RulesEngine._LOOKUP_TABLES = lookup_tables.download_s3_objects()
コード例 #11
0
    def test_download_s3_object_compressed(self, mock_logger):
        """LookupTables - Download S3 Object, Compressed File"""
        put_mock_s3_object(
            'bucket_name', 'bar.json',
            zlib.compress(json.dumps({'compressed_key': 'compressed_val'})))

        expected_result = {
            'foo': {
                'bucket_name_key': 'foo_value'
            },
            'bar': {
                'compressed_key': 'compressed_val'
            }
        }

        LookupTables._download_s3_objects(self.buckets_info)

        assert_equal(LookupTables._tables, expected_result)
        mock_logger.assert_any_call('Data in \'%s\' is not compressed',
                                    'foo.json')
コード例 #12
0
    def test_load_lookup_tables(self):
        """LookupTables - Load Lookup Table"""
        self.config['global']['infrastructure']['lookup_tables'][
            'enabled'] = True
        with patch.object(LookupTables,
                          '_download_s3_objects') as download_mock:
            result = LookupTables.load_lookup_tables(self.config)

            download_mock.assert_called_with(self.buckets_info)
            assert_equal(result, LookupTables)
            assert_equal(
                LookupTables._LOOKUP_TABLES_LAST_REFRESH != datetime(
                    year=1970, month=1, day=1), True)
コード例 #13
0
    def test_load_lookup_tables_compresed(self, mock_logger):
        """LookupTables - Load lookup table, compressed file"""
        self.config['global']['infrastructure']['lookup_tables'][
            'enabled'] = True
        lookup_tables = LookupTables.load_lookup_tables(self.config)
        # Replace one of the S3 objects with a compressed version
        put_mock_s3_object(
            'bucket_name', 'bar.json',
            zlib.compress(json.dumps({'compressed_key': 'compressed_val'})),
            self.region)
        result = lookup_tables.download_s3_objects()

        assert_equal(result.get('bar'), {'compressed_key': 'compressed_val'})
        assert_equal(result.get('foo'), {'bucket_name_key': 'foo_value'})
        mock_logger.assert_any_call('Data in \'%s\' is not compressed',
                                    'foo.json')
コード例 #14
0
    def __init__(self, *rule_paths):
        RulesEngine._config = RulesEngine._config or load_config()
        RulesEngine._threat_intel = (
            RulesEngine._threat_intel or ThreatIntel.load_from_config(self.config)
        )
        # Instantiate the alert forwarder to handle sending alerts to the alert processor
        RulesEngine._alert_forwarder = RulesEngine._alert_forwarder or AlertForwarder()

        # Load the lookup tables, which include logic for refreshing the tables
        RulesEngine._lookup_tables = LookupTables.load_lookup_tables(self.config)

        # If not rule import paths are specified, default to the config
        if not rule_paths:
            rule_paths = [item for location in {'rule_locations', 'matcher_locations'}
                          for item in self.config['global']['general'][location]]

        import_folders(*rule_paths)

        self._in_lambda = 'LAMBDA_RUNTIME_DIR' in env
        self._required_outputs_set = resources.get_required_outputs()
        self._load_rule_table(self.config)
コード例 #15
0
 def test_download_s3_object_bucket_exception(self, mock_logger):
     """LookupTables - Download S3 Object, Bucket Does Not Exist"""
     LookupTables._download_s3_objects({'wrong_bucket': ['foo.json']})
     mock_logger.assert_called_with(
         'Encounterred error while downloading %s from %s, %s', 'foo.json',
         'wrong_bucket', 'The specified bucket does not exist')
コード例 #16
0
 def test_download_s3_object_file_exception(self):  # pylint: disable=no-self-use
     """LookupTables - S3 file doesn't exist"""
     lookup_tables = LookupTables({'bucket_name': ['wrong_file']})
     lookup_tables.download_s3_objects()
コード例 #17
0
class TestLookupTables(object):
    """Test LookupTables class"""
    def __init__(self):
        self.buckets_info = {'bucket_name': ['foo.json', 'bar.json']}
        self.region = 'us-east-1'

    def setup(self):
        """LookupTables - Setup S3 bucket mocking"""
        # pylint: disable=attribute-defined-outside-init
        self.config = load_config('tests/unit/conf')
        self.lookup_tables = LookupTables(self.buckets_info)
        self.s3_mock = mock_s3()
        self.s3_mock.start()
        for bucket, files in self.buckets_info.iteritems():
            for json_file in files:
                put_mock_s3_object(
                    bucket, json_file,
                    json.dumps({
                        '{}_key'.format(bucket):
                        '{}_value'.format(os.path.splitext(json_file)[0])
                    }), self.region)

    def teardown(self):
        """LookupTables - Stop S3 bucket mocking"""
        self.s3_mock.stop()
        LookupTables._LOOKUP_TABLES_LAST_REFRESH = datetime(year=1970,
                                                            month=1,
                                                            day=1)

    def test_download_s3_object(self):
        """LookupTables - Download s3 object"""
        result = self.lookup_tables.download_s3_objects()
        assert_equal(result.keys(), ['foo', 'bar'])
        expect_result = {
            'foo': {
                'bucket_name_key': 'foo_value'
            },
            'bar': {
                'bucket_name_key': 'bar_value'
            }
        }
        assert_equal(result, expect_result)

    @patch('logging.Logger.error')
    def test_download_s3_object_bucket_exception(self, mock_logger):  # pylint: disable=no-self-use
        """LookupTables - S3 bucket doesn't exist"""
        lookup_tables = LookupTables({'wrong_bucket': ['foo.json']})
        lookup_tables.download_s3_objects()
        mock_logger.assert_called_with(
            'Encounterred error while downloading %s from %s, %s', 'foo.json',
            'wrong_bucket', 'The specified bucket does not exist')

    def test_download_s3_object_file_exception(self):  # pylint: disable=no-self-use
        """LookupTables - S3 file doesn't exist"""
        lookup_tables = LookupTables({'bucket_name': ['wrong_file']})
        lookup_tables.download_s3_objects()

    @patch('logging.Logger.error')
    def test_load_lookup_tables_missing_config(self, mock_logger):
        """LookupTables - Load lookup tables with missing config"""
        # Remove lookup_tables config for this test case.
        self.config['global']['infrastructure'].pop('lookup_tables')
        lookup_tables = LookupTables.load_lookup_tables(self.config)
        assert_equal(lookup_tables, False)
        assert_equal(LookupTables._LOOKUP_TABLES_LAST_REFRESH,
                     datetime(year=1970, month=1, day=1))

        self.config['global']['infrastructure']['lookup_tables'] = {
            'cache_refresh_minutes': 10,
            'enabled': True
        }
        lookup_tables = LookupTables.load_lookup_tables(self.config)
        mock_logger.assert_called_with('Buckets not defined')

    @patch('logging.Logger.debug')
    def test_load_lookup_tables(self, mock_logger):
        """LookupTables - Load lookup table"""
        self.config['global']['infrastructure']['lookup_tables'][
            'enabled'] = True
        lookup_tables = LookupTables.load_lookup_tables(self.config)
        result = lookup_tables.download_s3_objects()

        assert_equal(result.get('foo'), {'bucket_name_key': 'foo_value'})
        assert_equal(result.get('bar'), {'bucket_name_key': 'bar_value'})
        assert_equal(result.get('not_exist'), None)

        LookupTables.load_lookup_tables(self.config)
        mock_logger.assert_called()