CbAPI Changelog¶
CbAPI 1.3.2 - Released August 10, 2017¶
This release introduces the Policy API for Cb Defense. A sample policy_operations.py script is now included
in the examples directory for Cb Defense.
Other changes:
- Cb Response
- Bugfixes to the
UserModel Object. - New
user_operations.pyexample script to manage users & teams. - Additional
TeamModel Object to add/remove/modify user teams. - New
check_datasharing.pyexample script to check if third party data sharing is enabled for binaries on any sensor groups. - Documentation fix for the
UserModel Object. - Fix to the
watchlist_operations.pyexample script.
- Bugfixes to the
CbAPI 1.3.1 - Released August 3, 2017¶
This is a bugfix release with minor changes:
- Cb Response
- Add
partition_operations.pyscript to demonstrate the use of the StoragePartition model object. - Fix errors when accessing the
.startattribute of child processes. - Fix errors generated by the
walk_children.pyexample script. The output has been changed as well to indicate the process lifetime, console UI link, and command lines. - Add an
.endattribute to the Process model object. This attribute reports back eitherNoneif the process is still executing, or the last event time associated with the process if it has exited. See thewalk_children.pyscript for an example of how to calculate process lifetime. - Fix errors when using the
.parentsattribute of a Process. - Add
wait_for_completionflag tocreate_processLive Response method, and default toTrue. Thecreate_processmethod will now wait for the target process to complete before returning.
- Add
- Cb Defense
- Add
wait_for_completionflag tocreate_processLive Response method, and default toTrue. Thecreate_processmethod will now wait for the target process to complete before returning.
- Add
CbAPI 1.3.0 - Released July 27, 2017¶
This release introduces the Live Response API for Cb Defense. A sample cblr_cli.py script is now included in the
examples directory for both Cb Response and Cb Defense.
Other changes:
- Cb Protection
- You can now create new
FileRuleandPolicymodel objects in cbapi.
- You can now create new
- Cb Response
- Added
watchlist_exporter.pyandwatchlist_importer.pyscripts to the Cb Response examples directory. These scripts allow you to export Watchlist data in a human- and machine-readable JSON format and then re-import them into another Cb Response server. - The
SensorModel Object now uses the non-paginated (v1) API by default. This fixes any issues encountered when iterating over all the sensors and receiving duplicate and/or missing sensors. - Fix off-by-one error in
CbCrossProcessobject. - Fix issue iterating through
ProcessModel Objects when accessing processes generated from a 5.2 server after upgrading to 6.1. - Reduce number of API requests required when accessing sibling information (parents, children, and siblings) from the
ProcessModel Object. - Retrieve all events for a process when using
segmentID of zero on a Cb Response 6.1 server. - Behavior of
Process.childrenattribute has changed:- Only one entry is present per child (before there were up to two; one for the spawn event, one for the terminate event)
- The timestamp is derived from the start time of the process, not the timestamp from the spawn event. the two timestamps will be off by a few microseconds.
- The old behavior is still available by using the
Process.childprocsattribute instead. This incurs a performance penalty as another API call will have to be made to collect the childproc information.
BinaryModel Object now returns False for.is_signedattribute if it is set to(Unknown).
- Added
- Moved the
sixPython module into cbapi and removed the external dependency.
CbAPI 1.2.0 - Released June 22, 2017¶
This release introduces compatibility with our new product, Cb Defense, as well as adding new Model Objects introduced in the Cb Protection 8.0 APIs.
Other changes:
- Cb Response
- New method
synchronize()added to theFeedModel Object
- New method
- Bug fixes and documentation improvements
CbAPI 1.1.1 - Released June 2, 2017¶
This release includes compatibility fixes for Cb Response 6.1. Changes from 1.0.1 include:
- Substantial changes to the
ProcessModel Object for Cb Response 6.1. See details below. - New
StoragePartitionModel Object to control Solr core loading/unloading in Cb Response 6.1. - New
IngressFilterModel Object to control ingress filter settings in Cb Response 6.1. - Fix issues with
event_export.pyexample script. - Add
.all_eventsproperty to theProcessModel Object to expose a list of all events across all segments. - Add example script to perform auto-banning based on watchlist hits from Cb Event Forwarder S3 output files.
- Add bulk operations to the
ThreatReportandAlertQuery objects:- You can now call
.set_ignored(),.assign(), and.change_status()on anAlertQuery object to change the respective fields for every Alert that matches the query. - You can now call
.set_ignored()on aThreatReportQuery object to set or clear the ignored flag for every ThreatReport that matches the query.
- You can now call
Changes to Process Model Object for Cb Response 6.1¶
Cb Response 6.1 uses a new way of recording process events that greatly increases the speed and scale of collection, allowing you to store and search data for more endpoints on the same hardware. Details on the new database format can be found on the Developer Network website at the Process API Changes for Cb Response 6.0 page.
The Process Model Object traditionally referred to a single “segment” of events in the Cb Response database. In
Cb Response versions prior to 6.0, a single segment will include up to 10,000 individual endpoint events, enough to
handle over 95% of the typical event activity for a given process. Therefore, even though a Process Model Object
technically refers to a single segment in a process, since most processes had less than 10,000 events and therefore
were only comprised of a single segment, this distinction wasn’t necessary.
However, now that processes are split across many segments, a better way of handling this is necessary. Therefore,
Cb Response 6.0 introduces the new .group_by() method. This method is new in cbapi 1.1.0 and is part of five
new query filters available when communicating with a Cb Response 6.1 server. These filters are accessible via methods
on the Process Query object. These new methods are:
.group_by()- Group the result set by a field in the response. Typically you will want to group byid, which will ensure that the result set only has one result per process rather than one result per event segment. For more information on processes, process segments, and how segments are stored in Cb Response 6.0, see the Process API Changes for Cb Response 6.0 page on the Developer Network website..min_last_update()- Only return processes that have events after a given date/time stamp (relative to the individual sensor’s clock).max_last_update()- Only return processes that have events before a given date/time stamp (relative to the individual sensor’s clock).min_last_server_update()- Only return processes that have events after a given date/time stamp (relative to the Cb Response server’s clock).max_last_server_update()- Only return processes that have events before a given date/time stamp (relative to the Cb Response server’s clock)
Examples for new Filters¶
Let’s take a look at an example:
>>> from datetime import datetime, timedelta
>>> yesterday = datetime.utcnow() - timedelta(days=1) # Get "yesterday" in GMT
>>> for proc in c.select(Process).where("process_name:cmd.exe").min_last_update(yesterday):
... print proc.id, proc.segment
DEBUG:cbapi.connection:HTTP GET /api/v1/process?cb.min_last_update=2017-05-21T18%3A41%3A58Z&cb.urlver=1&facet=false&q=process_name%3Acmd.exe&rows=100&sort=last_update+desc&start=0 took 2.164s (response 200)
00000001-0000-0e48-01d2-c2a397f4cfe0 1495465643405
00000001-0000-0e48-01d2-c2a397f4cfe0 1495465407157
00000001-0000-0e48-01d2-c2a397f4cfe0 1495463680155
00000001-0000-0e48-01d2-c2a397f4cfe0 1495463807694
00000001-0000-0e48-01d2-c2a397f4cfe0 1495463543944
00000001-0000-0e48-01d2-c2a397f4cfe0 1495463176570
00000001-0000-0e48-01d2-c2a397f4cfe0 1495463243492
Notice that the “same” process ID is returned seven times, but with seven different segment IDs. Cb Response will
return every process event segment that matches a given query, in this case, any event segment that contains the
process command name cmd.exe.
That is, however, most likely not what you wanted. Instead, you’d like a list of the unique processes associated with
the command name cmd.exe. Just add the .group_by("id") filter to your query:
>>> for proc in c.select(Process).where("process_name:cmd.exe").min_last_update(yesterday).group_by("id"):
... print proc.id, proc.segment
DEBUG:cbapi.connection:HTTP GET /api/v1/process?cb.group=id&cb.min_last_update=2017-05-21T18%3A41%3A58Z&cb.urlver=1&facet=false&q=process_name%3Acmd.exe&rows=100&sort=last_update+desc&start=0 took 2.163s (response 200)
00000001-0000-0e48-01d2-c2a397f4cfe0 1495465643405