Skip to content

Commit fe1158d

Browse files
authored
Merge pull request #70 from carbonblack/develop
Release v1.1.1
2 parents 36af8a9 + 92c90b8 commit fe1158d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+51
-51
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Carbon Black
3+
Copyright (c) 2020-2021 Carbon Black
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+2-2

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0
1+
1.1.1

requirements.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Package dependencies
2-
carbon-black-cloud-sdk
3-
python-dateutil
4-
pyyaml
5-
requests
6-
schema
7-
yara-python
2+
carbon-black-cloud-sdk>=1.2.0
3+
python-dateutil>=2.8.1
4+
PyYAML>=5.4.1
5+
requests>=2.25.1
6+
schema>=0.7.4
7+
yara-python>=4.0.5
88

99
# Dev dependencies
1010
pytest==5.4.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def read(fname):
3232
long_description_content_type='text/markdown',
3333
platforms="any",
3434
classifiers=[
35-
"Development Status :: 3 - Alpha",
35+
"Development Status :: 5 - Production/Stable",
3636
"Intended Audience :: Developers",
3737
"Intended Audience :: System Administrators",
3838
"Operating System :: OS Independent",

src/cbc_binary_toolkit/cli_input.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/config/errors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/config/model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/deduplication_component.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/engine/manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/engine_results.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/errors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/ingestion_component.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/loader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/schemas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/state/builtin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/state/manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit/ubs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit_examples/engine/yara_local/yara_engine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/cbc_binary_toolkit_examples/tools/analysis_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/engine_fixtures/messages.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/engine_fixtures/mock_engine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/input_fixtures/file_path_constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/persistor_fixtures/mock_persistor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/schema_fixtures/mock_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_builtin_persistor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_cli_input.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_deduplication_component.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_engine_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_engine_results.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_ingestion_component.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_loader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_persistence_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_schemas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/test_ubs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/ubs_fixtures/CBCloudAPIMock.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/ubs_fixtures/filedownload.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/component/ubs_fixtures/metadata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/examples/test_yara_local.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/functional/test_main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/integration/test_analysis_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

src/tests/integration/test_components.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
# *******************************************************
4-
# Copyright (c) VMware, Inc. 2020. All Rights Reserved.
4+
# Copyright (c) VMware, Inc. 2020-2021. All Rights Reserved.
55
# SPDX-License-Identifier: MIT
66
# *******************************************************
77
# *

0 commit comments

Comments
 (0)