You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+24-26
Original file line number
Diff line number
Diff line change
@@ -2,24 +2,25 @@
2
2
3
3
**Latest Version: 1.7.5**
4
4
5
-
_**Notice**: The Carbon Black Cloud portion of CBAPI has moved to https://github.com/carbonblack/carbon-black-cloud-sdk-python. Any future development and bug fixes for Carbon Black Cloud APIs will be made there. Carbon Black EDR and App Control will remain supported at CBAPI_
5
+
_**Notice**:_
6
+
* The Carbon Black Cloud portion of CBAPI has moved to https://github.com/carbonblack/carbon-black-cloud-sdk-python. Any future development and bug fixes for Carbon Black Cloud APIs will be made there. Carbon Black EDR and App Control will remain supported at CBAPI
7
+
* Carbon Black EDR (Endpoint Detection and Response) is the new name for the product formerly called CB Response.
8
+
* Carbon Black App Control is the new name for the product formerly called CB Protection.
6
9
7
-
These are the Python bindings for the Carbon Black Enterprise Response and Enterprise Protection REST APIs.
10
+
These are the Python bindings for the Carbon Black EDR and App Control REST APIs.
8
11
To learn more about the REST APIs, visit the Carbon Black Developer Network Website at https://developer.carbonblack.com.
9
12
10
-
Please visit https://cbapi.readthedocs.io for detailed documentation on this API. Additionally, we have a slideshow
11
-
available at https://developer.carbonblack.com/2016/07/presentation-on-the-new-carbon-black-python-api/ that provides
12
-
an overview of the concepts that underly this API binding.
13
+
Please visit https://cbapi.readthedocs.io for detailed documentation on this API.
13
14
14
15
## Support
15
16
16
17
1. View all API and integration offerings on the [Developer Network](https://developer.carbonblack.com/) along with reference documentation, video tutorials, and how-to guides.
17
18
2. Use the [Developer Community Forum](https://community.carbonblack.com/t5/Developer-Relations/bd-p/developer-relations) to discuss issues and get answers from other API developers in the Carbon Black Community.
18
-
3. Report bugs and change requests to [Carbon Black Support](http://carbonblack.com/resources/support/).
19
+
3. Report bugs and change requests to [Carbon Black Support](https://www.vmware.com/support/services.html).
19
20
20
21
## Requirements
21
22
22
-
The new cbapi is designed to work on Python 2.6.6 and above (including 3.x). If you're just starting out,
23
+
The cbapi package is designed to work on Python 2.6.6 and above (including 3.x). If you're just starting out,
23
24
we recommend using the latest version of Python 3.6.x or above.
24
25
25
26
All requirements are installed as part of `pip install`.
@@ -28,11 +29,10 @@ The legacy cbapi (`cbapi.CbApi`) and legacy bit9api (`cbapi.bit9Api`) are still
28
29
## Backwards Compatibility
29
30
30
31
Backwards compatibility with old scripts is maintained through the `cbapi.legacy` module. Old scripts that import
31
-
`cbapi.CbApi` directly will continue to work. Once cbapi 2.0.0 is released, the old `CbApi` will be deprecated and
32
-
removed entirely no earlier than January 2017.
32
+
`cbapi.CbApi` directly will continue to work.
33
33
34
-
New scripts should use the `cbapi.CbResponseAPI` (for CB Response) and
35
-
`cbapi.CbProtectionAPI` (for CB Protection / former Bit9) API entry points.
34
+
New scripts should use the `cbapi.CbResponseAPI` (for EDR (CB Response)) and
35
+
`cbapi.CbProtectionAPI` (for App Control (CB Protection)) API entry points.
36
36
37
37
## Getting Started
38
38
@@ -49,10 +49,10 @@ Clone this repository, cd into `cbapi-python` then run setup.py with the `develo
49
49
50
50
### Sample Code
51
51
52
-
There are several examples in the `examples` directory for both Carbon Black Enterprise Response and Protection. We
53
-
will be adding more samples over time. For a quick start, see the following code snippets:
52
+
There are several examples in the `examples` directory for both EDR and App Control.
53
+
For a quick start, see the following code snippets:
54
54
55
-
**Carbon Black Enterprise Response**
55
+
**Carbon Black EDR**
56
56
57
57
from cbapi.response.models import Process, Binary, Sensor, Feed, Watchlist, Investigation
58
58
from cbapi.response.rest_api import CbEnterpriseResponseAPI
@@ -78,7 +78,7 @@ will be adding more samples over time. For a quick start, see the following code
78
78
s.save()
79
79
80
80
81
-
**Carbon Black Enterprise Protection**
81
+
**Carbon Black App Control**
82
82
83
83
from cbapi.protection.models import *
84
84
from cbapi.protection.rest_api import CbEnterpriseProtectionAPI
@@ -100,9 +100,8 @@ will be adding more samples over time. For a quick start, see the following code
100
100
101
101
In order to perform any queries via the API, you will need to get the API token for your CB user. See the documentation
102
102
on the Developer Network website on how to acquire the API token for
0 commit comments