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
{{ message }}
This repository was archived by the owner on Feb 5, 2025. It is now read-only.
Fix: Change uint64 fields in syncv1.proto to uint32 for backwards compatibility (#1422)
Change the uint64 fields in the syncv1.proto to uint32 to ensure backwards compatibility.
This also updates the SNTSyncEventUpload code to use the uint32 values and updates sync protocol docs.
| enable_transitive_rules | Use previous setting | boolean | Whether or not to enable transitive allowlisting | true |
142
142
| batch_size | Use a Santa-defined default value | integer | Number of events to upload at a time | 128 |
143
-
| full_sync_interval | Defaults to 600 seconds |integer| Number of seconds between full syncs. Note: Santa enforces a minimum value of 60. The default value will be used if a smaller value is provided. | 600 |
143
+
| full_sync_interval | Defaults to 600 seconds |uint32| Number of seconds between full syncs. Note: Santa enforces a minimum value of 60. The default value will be used if a smaller value is provided. | 600 |
144
144
| client_mode | Use previous setting | string | Operating mode to set for the client | either `MONITOR` or `LOCKDOWN`|
145
145
| allowed_path_regex | Use previous setting | string | Regular expression to allow a binary to execute from a path | "/Users/markowsk/foo/.\*" |
146
146
| blocked_path_regex | Use previous setting | string | Regular expression to block a binary from executing by path | "/tmp/" |
@@ -223,8 +223,8 @@ sequenceDiagram
223
223
| file_bundle_version | NO | string | The bundle version string | "9999.1.1" |
224
224
| file_bundle_version_string | NO | string | Bundle short version string | "2.3.4" |
225
225
| file_bundle_hash | NO | string | SHA256 hash of all executables in the bundle | "7466e3687f540bcb7792c6d14d5a186667dbe18a85021857b42effe9f0370805" |
226
-
| file_bundle_hash_millis | NO |float64| The time in milliseconds it took to find all of the binaries, hash and produce the bundle_hash | 1234775 |
227
-
| file_bundle_binary_count | NO |integer| The number of binaries in a bundle | 13 |
226
+
| file_bundle_hash_millis | NO |uint32| The time in milliseconds it took to find all of the binaries, hash and produce the bundle_hash | 1234775 |
227
+
| file_bundle_binary_count | NO |uint32| The number of binaries in a bundle | 13 |
228
228
| pid | NO | int | Process id of the executable that was blocked | 1234 |
229
229
| ppid | NO | int | Parent process id of the executable that was blocked | 456 |
230
230
| parent_name | NO | Parent process short command name of the executable that was blocked | "bar" |
0 commit comments