1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package chrome.cros.reporting.proto;
// Used for annotating sensitive fields in google3.
// ${COPYBARA_DATAPOL_IMPORT}
import "components/safe_browsing/core/common/proto/csd.proto";
option optimize_for = LITE_RUNTIME;
// The end result of the events.
enum EventResult {
EVENT_RESULT_UNSPECIFIED = 0;
EVENT_RESULT_ALLOWED = 1;
EVENT_RESULT_WARNED = 2;
EVENT_RESULT_BLOCKED = 3;
EVENT_RESULT_BYPASSED = 4;
EVENT_RESULT_DETECTED = 5;
EVENT_RESULT_DATA_MASKED = 6;
EVENT_RESULT_DATA_UNMASKED = 7;
}
// The reporting target of the events.
enum ReportingTarget {
REPORTING_TARGET_UNKNOWN = 0;
REPORTING_TARGET_CHROME = 1;
REPORTING_TARGET_RULES = 2;
}
// The user action led to a content transfer event.
// Mostly for uploads for now, and will be extended to other triggers.
enum ContentTransferMethod {
CONTENT_TRANSFER_METHOD_UNKNOWN = 0;
CONTENT_TRANSFER_METHOD_FILE_PICKER = 1;
CONTENT_TRANSFER_METHOD_DRAG_AND_DROP = 2;
CONTENT_TRANSFER_METHOD_FILE_PASTE = 3;
}
message CrowdstrikeAgent {
// Ensure field names are snake_case to be consistent with serialization in
// //j/c/g/chrome/cros/boq/common/connectors/proto/reporting_event_data.proto
string agent_id = 1 [json_name = "agent_id"];
string customer_id = 2 [
// copybara:datapol_begin
// (datapol.semantic_type) = ST_CUSTOMER_ID,
// copybara:datapol_end
json_name = "customer_id"
];
}
// Security agent installed on the device. To add new agents, you only need to
// modify the SecurityAgent message
message SecurityAgent {
oneof agent {
CrowdstrikeAgent crowdstrike = 100;
}
}
// Information about the algorithm/detector used to match sensitive data.
message MatchedDetector {
// Unique identifier for this detector.
string detector_id = 1;
// Display name of the detector.
string display_name = 2;
enum DetectorType {
DETECTOR_TYPE_UNSPECIFIED = 0;
// Predefined detector part of Cloud DLP.
PREDEFINED_DLP = 1;
// A user-defined Raven detector.
USER_DEFINED = 2;
}
// The type of this detector.
DetectorType detector_type = 3;
enum MaskType {
MASK_TYPE_UNSPECIFIED = 0;
LIGHT_OBFUSCATION = 1;
HARD_OBFUSCATION = 2;
REDACT = 3;
}
// The mask type of this detector, if it is used for data masking.
MaskType mask_type = 4;
}
// Information about notification configuration for a triggered rule.
message NotificationConfiguration {
enum Channel {
CHANNEL_UNKNOWN = 0;
EMAIL = 1;
}
// The notification's communication channel.
repeated Channel channels = 1;
// Whether the notification is sent to super admins.
bool send_to_super_admins = 2;
// Whether the notification is sent to primary admins.
bool send_to_primary_admins = 3;
// List of emails to receive the notification.
repeated string recipient_emails = 4;
}
enum ServerScanStatus {
SERVER_SCAN_STATUS_UNKNOWN = 0;
SERVER_SCAN_STATUS_COMPLETED = 1;
SERVER_SCAN_STATUS_AUDIT_DUE_TO_CONFIG = 2;
SERVER_SCAN_STATUS_AUDIT_DUE_TO_DEADLINE_EXCEEDED = 3;
}
// Stores content that matched a DLP rule plus a few characters around it
// providing context information.
message Snippet {
// The matched string with surrounding text which was used as context during
// detection.
// Required.
string content = 1
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// Specifies a half-open interval [start, end).
message Range {
// Start index (inclusive).
int32 start = 1;
// End index (exclusive).
int32 end = 2;
}
// Zero-based unicode code points range representing where the match occurred,
// relative to the "content" field above.
//
// For example, the original file content is "I like long walks on the beach",
// and the snippet content is "long walks on" with the matched content
// "walks". The range here will be [5, 10) representing the matched content
// location relative to the snippet.
//
// Required.
Range match_codepoint_range = 2;
// ID of the matched detector if any. Set for both predefined and custom
// detectors.
string detector_id = 3
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_NOT_REQUIRED
// ]
// copybara:datapol_end
;
// Specifies the cell location of a match within a spreadsheet.
message RecordLocation {
// The zero-based index of the row where the match is located.
int64 row_index = 1;
// The field name associated with the match.
string field_name = 2;
}
// Location of the match within a spreadsheet if applicable.
RecordLocation record_location = 4;
}
// Information about the triggered rule.
// Next ID: 15
message TriggeredRuleInfo {
// The unique identifier for this rule.
int64 rule_id = 1;
// Name of this rule defined by its creator.
string rule_name = 2;
// External unique identifier for this rule.
string rule_resource_name = 3;
// Severity of this rule.
enum RuleSeverity {
RULE_SEVERITY_UNSPECIFIED = 0;
LOW = 1;
MEDIUM = 2;
HIGH = 3;
}
RuleSeverity severity = 4;
// Action taken by Chrome.
enum Action {
ACTION_UNKNOWN = 0;
REPORT_ONLY = 1;
WARN = 2;
BLOCK = 3;
}
Action action = 5;
// The detectors which were matched.
repeated MatchedDetector matched_detectors = 6;
// Whether the rule has one or more alert(s) configured.
bool has_alert = 7;
// Configurations for sending notifications for the triggered rule.
repeated NotificationConfiguration notification_configurations = 8;
// Access level.
repeated string access_level = 9;
// URL Category of the URL as per this rule.
string url_category = 10;
// Matched content detected by this rule.
repeated Snippet snippets = 11;
// Whether the rule has watermarking enabled.
bool has_watermarking = 12;
// Whether the rule has screenshot protection enabled.
bool has_screenshot_protection = 13;
// URL categories in the iframes.
repeated string iframe_url_categories = 14;
}
// Risk level for a url/ip/file
enum RiskLevel {
RISK_LEVEL_UNSPECIFIED = 0;
// The URI given is risky / mildly suspicious.
LOW = 20;
// Higher (>90%) confidence that the URI given is risky (with no egregious
// false positives)
MEDIUM = 30;
// Extremely high (>99%) confidence that the URI given is risky.
HIGH = 40;
}
// RiskInfo proto for url/ip/file
// This field is considered Enriched/Proprietary, it should only be
// available to SecOps, and removed for Workspace BIP/SIT, GCP Cloud Pubsub
// or 3P SIEMs.
// Next ID: 7
message RiskInfo {
enum ThreatType {
THREAT_TYPE_UNSPECIFIED = 0;
// Anything related to malware, for either URL or file.
MALWARE = 1;
// Unwanted software.
UNWANTED_SOFTWARE = 2;
// Social engineering, including phishing.
SOCIAL_ENGINEERING = 3;
// Violating data protection/DLP rules.
DATA_LOSS = 4;
// Violates URL filtering rules.
URL_FILTERING = 5;
}
ThreatType threat_type = 1;
RiskLevel risk_level = 2;
// Risk category (malware category/family, phishing brand, etc.)
message RiskCategory {
string key = 1;
string value = 2;
}
repeated RiskCategory risk_categories = 3;
// Reasons like Safe Browsing blocklist, ML models vs. heuristic rules.
repeated string risk_reasons = 4;
// RiskIndicators (e.g, contains_macros)
// See Safe Browsing entity prevalence doc.
message RiskIndicator {
// The key of the indicator.
string key = 1;
// The value of the indicator.
oneof value {
int32 int_value = 2;
bool bool_value = 3;
string string_value = 4;
float float_value = 5;
}
}
repeated RiskIndicator risk_indicators = 5;
// Risk source, to differentiate risk info from pipelines like Bineval
// Reputation server, SUMS, LLAMA, etc.
enum RiskSource {
RISK_SOURCE_UNSPECIFIED = 0;
FILE_REPUTATION = 1; // Bineval Reputation Server or SB blocklist.
FILE_CONTENT_SCANNING = 2; // GAVS or SUMS.
URL_REPUTATION = 3; // Llama / WebRisk Evaluate API or SB blocklist.
URL_CONTENT_SCANNING = 4; // Ictis scanning pipeline.
}
RiskSource risk_source = 6;
}
// Next ID: 9
message UrlInfo {
// The URL.
string url = 1;
// The URL category according to go/webcat-doc.
repeated string url_categories = 2;
string ip = 3;
// Type of the URL stored below, reference ResourceType
enum URLType {
URL_TYPE_UNSPECIFIED = 0;
DOWNLOAD_URL = 1;
DOWNLOAD_REDIRECT = 2;
TAB_URL = 3;
TAB_REDIRECT = 4;
}
URLType type = 4;
// Per-threat-type-Risk Info, powered by Safe Browsing.
repeated RiskInfo risk_infos = 5;
// Top level risk level for the URL, aggregated over all per-threat-type
RiskLevel risk_level = 6;
message NavigationInitiator {
enum InitiatorType {
INITIATOR_TYPE_UNSPECIFIED = 0;
USER_INITIATIATED_NAVIGATION_OR_CLICK = 1;
BROWSER_INITIATED_NAVIGATION_OR_REDIRECT = 2;
CHROME_NOTIFICATION = 3;
}
InitiatorType initiator_type = 1;
string entity = 2; // URL of the notification, name of APP, etc.
}
NavigationInitiator navigation_initiator = 7;
// The http(s) method via which the URL is requested. e.g. GET, POST, etc.
string request_http_method = 8;
}
// A message for reporting password reuse events.
// Next ID: 16.
message SafeBrowsingPasswordReuseEvent {
reserved 5, 6, 7, 8, 9, 10;
// URL where this reuse happened
string url = 1;
// Username of the reused password.
// May be email address or another identifier.
string user_name = 2;
// Indicates if the url is considered a phishing URL.
bool is_phishing_url = 3;
// Username of the profile. This will be an email address.
string profile_user_name = 4;
// The address of the webpages that sent the user to this url.
repeated string referral_urls = 11;
// Whether the warning has been ignored.
bool clicked_through = 12;
// Whether a warning was shown to the user.
EventResult event_result = 13;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 14
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 15;
}
// A message for reporting password change events.
// Next ID: 6.
message SafeBrowsingPasswordChangedEvent {
// Username of the reused password.
// May be email address or another identifier.
string user_name = 1;
// Username of the profile. This will be an email address.
string profile_user_name = 2;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 3
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 4;
}
// A message for reporting dangerous download events.
// Next ID: 41.
message SafeBrowsingDangerousDownloadEvent {
reserved 5, 11, 12, 13, 14, 15, 16;
// The id of the scan. This will be shared by all events that are triggered
// from a single scan.
string scan_id = 24;
// URL of the download.
string url = 1;
// Source, e.g., a file system type.
string source = 25;
// Destination, e.g., a file system type.
string destination = 26;
// The file name.
string file_name = 2;
// SHA256 digest of this download.
string download_digest_sha256 = 3;
// Username of the profile. This will be an email address.
string profile_user_name = 4;
enum DangerousDownloadThreatType {
DANGEROUS_DOWNLOAD_THREAT_TYPE_UNSPECIFIED = 0;
DANGEROUS = 1;
DANGEROUS_HOST = 2;
POTENTIALLY_UNWANTED = 3;
UNCOMMON = 4;
UNKNOWN = 5;
DANGEROUS_FILE_TYPE = 6;
DANGEROUS_URL = 7;
}
// Category of dangerous download.
DangerousDownloadThreatType threat_type = 6;
// Name of downloaded content.
string content_name = 7;
// MIME type of downloaded content.
string content_type = 8
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// Size of downloaded content (in bytes).
uint64 content_size = 9;
// Which direction the dangerous file was transferred.
DataTransferEventTrigger trigger = 10;
// The address of the webpages that sent the user to this url.
repeated string referral_urls = 17;
// Whether the warning has been ignored.
bool clicked_through = 18;
// The justification the user provided to bypass the warning, if they did.
string user_justification = 20;
// The end result of the event.
EventResult event_result = 19;
// Malware category
string malware_category = 21;
// Malware family
string malware_family = 22;
// Evidence locker filepath in Google Cloud Storage.
string evidence_locker_filepath = 23;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 27
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 28;
// URL of the tab. Only different from `url` for downloads.
string tab_url = 29
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// The user action led to a content transfer event.
ContentTransferMethod content_transfer_method = 30;
// The server side scan status.
ServerScanStatus server_scan_status = 31;
// The total scan time in milliseconds on the server side before reporting
// this event.
int64 server_scan_latency_millis = 32;
// URL info of the URL that triggered the event.
UrlInfo url_info = 33;
// The referrers of the webpage that sent the user to the url that triggered
// the event.
repeated UrlInfo referrers = 34;
// Per-threat Risk Info, powered by Safe Browsing.
repeated RiskInfo risk_infos = 35;
// Top-level risk level for the content.
RiskLevel risk_level = 36;
// URL info of the URL of the tab.
UrlInfo tab_url_info = 37;
// The sha256 hash of the PEdata based on Safe Browsing's PEHash.
string pehash_sha256 = 38;
// Whether the content is encrypted.
bool is_encrypted = 39;
// URLs in the iframes.
repeated string iframe_urls = 40
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
}
// Types of data transferring operations that may have triggered the event to
// be sent by the client. For example, the user uploaded a data-sensitive file
// which triggered a DLP event.
enum DataTransferEventTrigger {
DATA_TRANSFER_EVENT_TRIGGER_TYPE_UNSPECIFIED = 0;
FILE_DOWNLOAD = 1;
FILE_UPLOAD = 2;
WEB_CONTENT_UPLOAD = 3;
PAGE_PRINT = 4;
URL_VISITED = 6;
CLIPBOARD_COPY = 7;
// Trigger for file transfers on ChromeOS.
FILE_TRANSFER = 5;
// Trigger for data masking events.
PAGE_LOAD = 8;
MUTATION = 9;
MOUSE_ACTION = 10;
}
// Next ID: 22.
message SafeBrowsingInterstitialEvent {
reserved 2, 6, 8, 9, 10, 11, 12, 13, 15;
// Top level URL that triggers this interstitial.
string url = 1;
// Net error code.
int32 net_error_code = 3;
// Username of the profile. This will be an email address.
string profile_user_name = 4;
// Whether the warning has been ignored.
bool clicked_through = 5;
enum InterstitialThreatType {
INTERSTITIAL_THREAT_TYPE_UNSPECIFIED = 0;
DANGEROUS_DOWNLOAD_SEEN = 1;
DANGEROUS_DOWNLOAD_OPENED = 2;
UNSAFE_SITE_SEEN = 3;
UNSAFE_SITE_BYPASSED = 4;
INVALID_SSL_SEEN = 5;
INVALID_SSL_BYPASSED = 6;
}
// Threat category of the interstitial shown.
InterstitialThreatType threat_type = 7;
// The address of the webpages that sent the user to this url.
repeated string referral_urls = 14;
// To indicate why this interstitial is shown.
enum InterstitialReason {
THREAT_TYPE_UNSPECIFIED = 0;
SSL_ERROR = 1;
MALWARE = 2;
SOCIAL_ENGINEERING = 3;
UNWANTED_SOFTWARE = 4;
PHISHING = 5;
HARMFUL = 6;
}
InterstitialReason reason = 16;
// End result of the interstitial event.
EventResult event_result = 17;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 18
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 19;
// URL info of the URL that triggered the event.
UrlInfo url_info = 20;
// The referrers of the webpage that sent the user to the url that triggered
// the event.
repeated UrlInfo referrers = 21;
}
// A DLP (Data Loss Prevention) event where sensitive data may have leaked.
// Next ID: 37.
message DlpSensitiveDataEvent {
reserved 6, 9, 10, 11, 12, 13, 15, 25;
// The id of the scan. This will be shared by all events that are triggered
// from a single scan.
string scan_id = 22;
// Name of file/content.
string file_name = 1;
// MIME type of downloaded content.
string content_type = 2;
// Size of content (in bytes).
uint64 content_size = 3;
// SHA256 hash of content with sensitive data.
string download_digest_sha_256 = 4;
// Trigger category that generated this event.
DataTransferEventTrigger trigger = 5;
repeated TriggeredRuleInfo triggered_rule_info = 17;
// Whether any warnings has been ignored and bypassed.
bool clicked_through = 7;
// The justification the user provided to bypass the warning, if they did.
string user_justification = 20;
// Top level URL that triggers this event.
string url = 8;
// Source, e.g., a file system type.
string source = 23;
// Destination, e.g., a file system type.
string destination = 24;
// Username of the profile. This will be an email address.
string profile_user_name = 14
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_EMAIL_ID
// ]
// copybara:datapol_end
;
// The address of the webpages that sent the user to this url.
repeated string referral_urls = 16;
// The reporting target of the event.
ReportingTarget reporting_target = 18;
// The end result of the event.
EventResult event_result = 19;
// Evidence locker filepath in Google Cloud Storage.
string evidence_locker_filepath = 21;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 26
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 27;
// URL of the tab. Only different from `url` for downloads.
string tab_url = 28
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// The user action led to a content transfer event.
ContentTransferMethod content_transfer_method = 29;
// The server side scan status.
ServerScanStatus server_scan_status = 30;
// The total scan time in milliseconds on the server side before reporting
// this event.
int64 server_scan_latency_millis = 31;
// URL info of the URL that triggered the event.
UrlInfo url_info = 32;
// The referrers of the webpage that sent the user to the url that triggered
// the event.
repeated UrlInfo referrers = 33;
// URLs in the iframes.
repeated string iframe_urls = 34
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// The web app signed-in account email. Only populated for Workspace sites.
string web_app_signed_in_account = 35
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Copy origin webp app signed-in account for paste event only. Only populated for
// Workspace sites.
string source_web_app_signed_in_account = 36
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
}
// Event where a large file could not be scanned for analysis e.g. malware or
// DLP.
// Next ID: 25.
message UnscannedFileEvent {
reserved 6, 9, 10, 11, 12, 14;
// Name of large unscanned file.
string file_name = 1;
// MIME type of downloaded content.
string content_type = 2;
// Size of large unscanned file (in bytes).
uint64 content_size = 3;
// SHA256 hash of large unscanned file.
string download_digest_sha_256 = 4;
// Trigger category that generated this event.
DataTransferEventTrigger trigger = 5;
// Top level URL that triggers this event.
string url = 7;
// Source, e.g., a file system type.
string source = 19;
// Destination, e.g., a file system type.
string destination = 20;
// Reason why the file could not be scanned. e.g. fileTooLarge,
// filePasswordProtected
string reason = 8;
// Username of the profile. This will be an email address.
string profile_user_name = 13;
// The address of the webpages that sent the user to this url.
repeated string referral_urls = 15;
// Whether the warning has been ignored.
bool clicked_through = 16;
// The end result of the event.
EventResult event_result = 17;
enum UnscannedReason {
UNSCANNED_REASON_UNKNOWN = 0;
FILE_PASSWORD_PROTECTED = 1;
FILE_TOO_LARGE = 2;
DLP_SCAN_FAILED = 3;
MALWARE_SCAN_FAILED = 4;
DLP_SCAN_UNSUPPORTED_FILE_TYPE = 5;
MALWARE_SCAN_UNSUPPORTED_FILE_TYPE = 6;
SERVICE_UNAVAILABLE = 7;
TOO_MANY_REQUESTS = 8;
TIMEOUT = 9;
}
UnscannedReason unscanned_reason = 18;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 21
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 22;
// URL of the tab. Only different from `url` for downloads.
string tab_url = 23
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// The user action led to a content transfer event.
ContentTransferMethod content_transfer_method = 24;
}
// Event that indicates that content was transferred.
//
// Next ID: 26.
message ContentTransferEvent {
// The id of the scan. This will be shared by all events that are triggered
// from a single scan.
string scan_id = 1;
// Username of the profile. This will be an email address.
string profile_user_name = 2
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_EMAIL_ID
// ]
// copybara:datapol_end
;
// Top level URL that triggers this event.
string url = 3;
// Source, e.g., a file system type.
string source = 9;
// Destination, e.g., a file system type.
string destination = 10;
// Name of the transferred file.
string file_name = 4
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// Size of transferred file (in bytes).
uint64 content_size = 5;
// MIME type of transferred content.
string content_type = 6
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// SHA256 hash of transferred file.
string digest_sha256 = 7
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT,
// (datapol.qualifier) = { is_encrypted: true }
// ]
// copybara:datapol_end
;
// Trigger category that generated this event.
DataTransferEventTrigger trigger = 8;
// The detectors which were matched for data insights.
repeated MatchedDetector matched_detectors = 11;
// URL of the tab. Only different from `url` for downloads.
string tab_url = 12
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// The user action led to a content transfer event.
ContentTransferMethod content_transfer_method = 13;
// The total scan time in milliseconds on the server side before reporting
// this event.
int64 server_scan_latency_millis = 14;
// URL info of the URL that triggered the event.
UrlInfo url_info = 15;
// The referrers of the webpage that sent the user to the url that triggered
// the event.
repeated UrlInfo referrers = 16;
// Per-threat Risk Info, powered by Safe Browsing.
repeated RiskInfo risk_infos = 17;
// Top-level risk level for the content.
RiskLevel risk_level = 18;
// URL info of the URL of the tab.
UrlInfo tab_url_info = 19;
// The sha256 hash of the PEdata based on Safe Browsing's PEHash.
string pehash_sha256 = 20;
// Whether the content is encrypted.
bool is_encrypted = 21;
// Evidence locker filepath in Google Cloud Storage.
string evidence_locker_filepath = 22;
// URLs in the iframes.
repeated string iframe_urls = 23
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USER_CONTENT
// ]
// copybara:datapol_end
;
// The web app signed-in account email. Only populated for Workspace sites.
string web_app_signed_in_account = 24
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Copy origin webp app signed-in account for paste event only. Only populated for
// Workspace sites.
string source_web_app_signed_in_account = 25
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
}
// Event sent when a user successfully logs in to a website, as determined by
// Chrome's password manager.
//
// Next ID: 8.
message LoginEvent {
// The URL on which the login took place.
string url = 1;
// True if the login happens through a third-party provider (such as "Sign in
// with Google")
bool is_federated = 2;
// The origin of the third-party login provider, if |federated| is true.
string federated_origin = 3;
// Username of the profile. This will be an email address.
string profile_user_name = 4;
// Username used to login.
string login_user_name = 5;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 6
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 7;
}
// Event sent when the Chrome Password Manager detects that a user's password
// can be found in a password breach and should be considered compromised.
//
// Next ID: 6.
message PasswordBreachEvent {
// Which user action triggered the password check. Additional values may be
// added to this enum if the Chrome Password Manager eventually supports more
// trigger points for the password check.
enum TriggerType {
// Default value, unused.
TRIGGER_TYPE_UNSPECIFIED = 0;
// User manually started a password safety check in settings.
SAFETY_CHECK = 1;
// The check was triggered by the user entering a password on a webpage.
PASSWORD_ENTRY = 2;
}
TriggerType trigger = 1;
// Represents the identity of the user on a specific website where the
// breached password is used.
message Identity {
// Login URL of the site for which the user has breached credentials.
string url = 1;
// Username associated with |domain|.
string username = 2;
}
// List of all identities for which the user has breached credentials.
repeated Identity identities = 2;
// Username of the profile. This will be an email address and could be
// different from the usernames in |identities|.
string profile_user_name = 3;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 4
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 5;
}
// Event sent when an extension is installed on a managed browser OR managed
// profile.
//
// Next ID: 11.
message BrowserExtensionInstallEvent {
// The extension ID.
string id = 1;
// The name of the extension.
string name = 2;
// The description of the extension.
string description = 3;
// Username of the profile. This will be an email address.
string profile_user_name = 4;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 5
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 6;
// The extension event action type.
enum ExtensionAction {
UNKNOWN = 0;
INSTALL = 1;
UPDATE = 2;
UNINSTALL = 3;
}
ExtensionAction extension_action_type = 7;
// The version of the extension.
string extension_version = 8
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_NOT_REQUIRED
// ]
// copybara:datapol_end
;
// Whether the extension source is Chrome Web Store.
bool from_webstore = 9 [deprecated = true];
// The source of the extension.
enum ExtensionSource {
// Default value, unused.
EXTENSION_SOURCE_UNSPECIFIED = 0;
// Installed or updated from the Chrome Web Store.
CHROME_WEBSTORE = 1;
// Installed from outside the Chrome Web Store.
EXTERNAL = 2;
// Component extension built into Chrome.
COMPONENT = 3;
}
ExtensionSource extension_source = 10;
}
// Event sent when a crash occurs on a managed browser OR a managed profile.
// The crash could be a browser process crash or a renderer process crash in
// the Chrome Browser
//
// Next ID: 8.
message BrowserCrashEvent {
// The Chrome Browser channel
string channel = 1;
// The Chrome Browser version number
string version = 2;
// The report ID in the collection server
string report_id = 3;
// The platform (OS)
string platform = 4;
// Username of the profile. This will be an email address.
string profile_user_name = 5;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 6
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 7;
}
// Next ID: 13
message UrlFilteringInterstitialEvent {
// Top level URL that triggers this interstitial.
string url = 1;
// Username of the profile. This will be an email address.
string profile_user_name = 2;
// Whether the warning has been ignored.
bool clicked_through = 3;
enum InterstitialThreatType {
UNKNOWN_INTERSTITIAL_THREAT_TYPE = 0;
ENTERPRISE_BLOCKED_SEEN = 1;
ENTERPRISE_WARNED_SEEN = 2;
ENTERPRISE_WARNED_BYPASS = 3;
}
// Threat category of the interstitial shown.
InterstitialThreatType threat_type = 4;
// The address of the webpages that sent the user to this url.
repeated string referrer_urls = 5;
// This is the list of rules that were triggered for this event. They are
// ordered by rule severity (block>warn) and the rule with url category is
// prioritized for each verdict type.
// Sets only rule_id, rule_name, url_category and action for each rule
// in this event.
repeated TriggeredRuleInfo triggered_rule_info = 6;
// End result of the interstitial event.
EventResult event_result = 7;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 8
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 9;
// The reporting target of the event.
ReportingTarget reporting_target = 10;
// URL info of the URL that triggered the event.
UrlInfo url_info = 11;
// The referrers of the webpage that sent the user to the url that triggered
// the event.
repeated UrlInfo referrers = 12;
}
// Next ID: 5
message ExtensionTelemetryEvent {
// Protobuf for uploading Chrome extension telemetry reports.
safe_browsing.ExtensionTelemetryReportRequest extension_telemetry_report = 1;
// Username of the profile. This will be an email address.
string profile_user_name = 2
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USERNAME
// ]
// copybara:datapol_end
;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 3
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 4;
}
// Event sent when a user navigates to a URL.
// Next ID: 7
message UrlNavigationEvent {
// Tab URL of the navigation.
UrlInfo url_info = 1;
// The referrers of the webpage that sent the user to this url.
repeated UrlInfo referrers = 2;
// Username of the profile. This will be an email address.
string profile_user_name = 3
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_USERNAME
// ]
// copybara:datapol_end
;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 4
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 5;
}
// Event for suspicious site visits.
message SuspiciousURLEvent {
// Tab URL of the navigation.
UrlInfo url_info = 1;
// The referrers of the webpage that sent the user to this url.
repeated UrlInfo referrers = 2;
// Username of the profile. This will be an email address.
string profile_user_name = 3;
// Identifier of the profile. On a managed browser this is the path to the
// profile storage which must be used in conjunction with the device
// identifier. On an unmanaged device, this is the profile identifier
// documented here: go/chrome-profile-identifier-dd.
string profile_identifier = 4
// copybara:datapol_begin
// [
// (datapol.semantic_type) = ST_IDENTIFYING_ID
// ]
// copybara:datapol_end
;
// Security agent installed on the device
repeated SecurityAgent security_agents = 5;
}
message TelomereEvent {
message TelomereLog {
// The event log_type if it needs to be specified.
string log_type = 1;
// The event log_message that will be forwarded to partners as is.
string log_data = 2
// copybara:datapol_begin
// [(datapol.semantic_type) = ST_USER_CONTENT]
// copybara:datapol_end
;
}
// List of telomere events.
repeated TelomereLog logs = 1;
}
|