File size: 137,341 Bytes
f11c846 | 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 | asset_id,org_id,asset_type,criticality_tier,environment_type,os_family,scanner_coverage,patch_mgmt_maturity,mean_time_to_remediate_days,sla_critical_days,sla_high_days,sla_medium_days,internet_exposed_flag,sbom_depth_score
ASSET000001,ORG0001,endpoint_workstation,high,on_premises_datacenter,embedded_rtos,0.7683,0.5661,60.9,30,90,180,0,0.5048
ASSET000002,ORG0001,supply_chain_dependency,medium,public_cloud_azure,windows,0.7093,0.6198,45.8,60,180,360,1,0.3183
ASSET000003,ORG0001,database_server,low,hybrid_cloud,macos,0.6784,0.5929,117.7,90,270,540,1,0.5052
ASSET000004,ORG0001,container_workload,medium,public_cloud_azure,linux,0.741,0.6061,59.5,60,180,360,1,0.4675
ASSET000005,ORG0001,endpoint_workstation,low,ot_ics_network,embedded_rtos,0.618,0.5844,67.2,90,270,540,1,0.3552
ASSET000006,ORG0001,network_service,high,hybrid_cloud,linux,0.7891,0.4661,45.0,30,90,180,0,0.3924
ASSET000007,ORG0001,cloud_vm,medium,public_cloud_azure,android_iot,0.6745,0.4991,59.5,60,180,360,0,0.4213
ASSET000008,ORG0001,endpoint_workstation,medium,edge_iot_fleet,embedded_rtos,0.6967,0.5273,55.7,60,180,360,0,0.3653
ASSET000009,ORG0001,supply_chain_dependency,medium,hybrid_cloud,macos,0.7081,0.5417,64.9,60,180,360,0,0.4472
ASSET000010,ORG0001,saas_integration,low,public_cloud_azure,freebsd,0.6222,0.5457,106.0,90,270,540,0,0.4764
ASSET000011,ORG0001,saas_integration,medium,hybrid_cloud,freebsd,0.7142,0.4803,50.9,60,180,360,1,0.3991
ASSET000012,ORG0001,server_on_premises,medium,ot_ics_network,linux,0.7447,0.6486,37.2,60,180,360,1,0.5853
ASSET000013,ORG0001,supply_chain_dependency,medium,public_cloud_gcp,macos,0.6706,0.4788,66.2,60,180,360,1,0.3021
ASSET000014,ORG0001,cloud_vm,medium,hybrid_cloud,embedded_rtos,0.6947,0.5183,52.2,60,180,360,1,0.2932
ASSET000015,ORG0001,server_on_premises,high,public_cloud_gcp,windows,0.8732,0.5839,34.2,30,90,180,1,0.5104
ASSET000016,ORG0001,network_service,medium,hybrid_cloud,embedded_rtos,0.6752,0.6174,41.8,60,180,360,0,0.5271
ASSET000017,ORG0001,endpoint_workstation,medium,hybrid_cloud,embedded_rtos,0.7744,0.5774,59.9,60,180,360,0,0.433
ASSET000018,ORG0001,web_application,medium,public_cloud_aws,embedded_rtos,0.7186,0.6592,50.1,60,180,360,1,0.207
ASSET000019,ORG0001,saas_integration,high,hybrid_cloud,macos,0.8282,0.5134,89.8,30,90,180,1,0.4323
ASSET000020,ORG0001,ot_ics_controller,high,public_cloud_aws,linux,0.7687,0.5641,29.7,30,90,180,0,0.3669
ASSET000021,ORG0001,database_server,critical,hybrid_cloud,macos,0.9155,0.5474,30.9,7,21,42,0,0.5037
ASSET000022,ORG0001,network_service,medium,public_cloud_gcp,embedded_rtos,0.7204,0.5725,30.6,60,180,360,1,0.6225
ASSET000023,ORG0001,ot_ics_controller,low,saas_dependent,android_iot,0.5068,0.5278,119.2,90,270,540,0,0.4924
ASSET000024,ORG0001,web_application,high,on_premises_datacenter,embedded_rtos,0.751,0.6948,42.4,30,90,180,0,0.1694
ASSET000025,ORG0001,cloud_vm,medium,hybrid_cloud,windows,0.7287,0.6137,48.9,60,180,360,1,0.5674
ASSET000026,ORG0001,database_server,low,hybrid_cloud,windows,0.5989,0.6278,84.4,90,270,540,0,0.4761
ASSET000027,ORG0001,container_workload,low,hybrid_cloud,android_iot,0.5622,0.5902,37.3,90,270,540,0,0.3141
ASSET000028,ORG0001,endpoint_workstation,critical,saas_dependent,android_iot,0.886,0.5388,36.0,7,21,42,0,0.4639
ASSET000029,ORG0001,supply_chain_dependency,medium,saas_dependent,android_iot,0.6964,0.5848,77.3,60,180,360,0,0.1695
ASSET000030,ORG0001,container_workload,medium,ot_ics_network,windows,0.7633,0.547,110.9,60,180,360,0,0.3851
ASSET000031,ORG0001,container_workload,medium,ot_ics_network,windows,0.7509,0.5252,74.9,60,180,360,0,0.3547
ASSET000032,ORG0001,database_server,low,public_cloud_gcp,freebsd,0.5458,0.563,50.3,90,270,540,0,0.3382
ASSET000033,ORG0001,network_service,low,public_cloud_aws,freebsd,0.6389,0.5279,89.7,90,270,540,0,0.4654
ASSET000034,ORG0001,ot_ics_controller,medium,public_cloud_gcp,macos,0.648,0.6025,75.5,60,180,360,0,0.4747
ASSET000035,ORG0001,saas_integration,high,public_cloud_aws,freebsd,0.7966,0.5153,48.6,30,90,180,1,0.3394
ASSET000036,ORG0001,api_gateway,medium,hybrid_cloud,freebsd,0.745,0.5792,68.4,60,180,360,0,0.3662
ASSET000037,ORG0001,server_on_premises,low,saas_dependent,android_iot,0.597,0.5396,55.2,90,270,540,0,0.6178
ASSET000038,ORG0001,ot_ics_controller,critical,on_premises_datacenter,windows,0.783,0.4823,36.3,7,21,42,0,0.4071
ASSET000039,ORG0001,ot_ics_controller,low,on_premises_datacenter,freebsd,0.6006,0.5563,72.1,90,270,540,0,0.4604
ASSET000040,ORG0001,api_gateway,medium,hybrid_cloud,linux,0.6179,0.4781,86.7,60,180,360,0,0.4191
ASSET000041,ORG0001,database_server,low,saas_dependent,macos,0.6469,0.5612,52.9,90,270,540,1,0.5174
ASSET000042,ORG0001,web_application,high,on_premises_datacenter,windows,0.8182,0.4841,74.6,30,90,180,0,0.3633
ASSET000043,ORG0001,cloud_vm,critical,on_premises_datacenter,freebsd,0.8678,0.5927,18.6,7,21,42,0,0.3531
ASSET000044,ORG0001,endpoint_workstation,medium,public_cloud_gcp,freebsd,0.706,0.5901,58.3,60,180,360,0,0.2994
ASSET000045,ORG0001,network_service,medium,public_cloud_aws,embedded_rtos,0.6779,0.5859,48.7,60,180,360,0,0.4277
ASSET000046,ORG0001,container_workload,low,public_cloud_azure,macos,0.5764,0.5879,114.8,90,270,540,0,0.3617
ASSET000047,ORG0001,endpoint_workstation,medium,public_cloud_azure,embedded_rtos,0.7149,0.6531,64.0,60,180,360,0,0.5079
ASSET000048,ORG0001,ot_ics_controller,medium,public_cloud_gcp,android_iot,0.7547,0.607,79.2,60,180,360,0,0.4332
ASSET000049,ORG0001,web_application,high,ot_ics_network,android_iot,0.8383,0.6489,39.7,30,90,180,0,0.2066
ASSET000050,ORG0001,web_application,high,saas_dependent,freebsd,0.799,0.573,72.3,30,90,180,0,0.4451
ASSET000051,ORG0001,supply_chain_dependency,high,edge_iot_fleet,android_iot,0.8586,0.5556,94.7,30,90,180,0,0.3957
ASSET000052,ORG0001,iot_firmware_device,low,edge_iot_fleet,linux,0.5301,0.5942,54.7,90,270,540,0,0.3918
ASSET000053,ORG0001,server_on_premises,medium,hybrid_cloud,android_iot,0.7049,0.5519,64.3,60,180,360,0,0.3962
ASSET000054,ORG0001,api_gateway,high,public_cloud_aws,macos,0.7902,0.5618,41.2,30,90,180,0,0.5288
ASSET000055,ORG0001,iot_firmware_device,critical,on_premises_datacenter,linux,0.9114,0.5211,36.7,7,21,42,0,0.5589
ASSET000056,ORG0001,cloud_vm,low,hybrid_cloud,embedded_rtos,0.6003,0.5131,88.2,90,270,540,1,0.2099
ASSET000057,ORG0001,iot_firmware_device,high,ot_ics_network,windows,0.8823,0.6099,30.7,30,90,180,0,0.31
ASSET000058,ORG0001,supply_chain_dependency,high,hybrid_cloud,windows,0.7364,0.5416,56.0,30,90,180,0,0.3826
ASSET000059,ORG0001,server_on_premises,high,edge_iot_fleet,windows,0.777,0.5294,63.2,30,90,180,1,0.4471
ASSET000060,ORG0001,cloud_vm,high,public_cloud_aws,linux,0.7702,0.5938,89.8,30,90,180,0,0.2981
ASSET000061,ORG0001,endpoint_workstation,medium,saas_dependent,macos,0.6899,0.5953,104.0,60,180,360,0,0.5302
ASSET000062,ORG0001,web_application,low,saas_dependent,android_iot,0.5813,0.5484,41.6,90,270,540,0,0.374
ASSET000063,ORG0001,container_workload,low,saas_dependent,embedded_rtos,0.6173,0.5585,70.4,90,270,540,0,0.3116
ASSET000064,ORG0001,supply_chain_dependency,low,on_premises_datacenter,macos,0.558,0.5862,74.5,90,270,540,1,0.4959
ASSET000065,ORG0001,iot_firmware_device,high,public_cloud_gcp,android_iot,0.8217,0.4701,38.8,30,90,180,1,0.3246
ASSET000066,ORG0001,server_on_premises,medium,saas_dependent,windows,0.7281,0.71,87.8,60,180,360,1,0.4011
ASSET000067,ORG0001,ot_ics_controller,critical,ot_ics_network,windows,0.907,0.5383,30.7,7,21,42,0,0.5733
ASSET000068,ORG0001,database_server,critical,hybrid_cloud,linux,0.7826,0.5201,30.9,7,21,42,1,0.3797
ASSET000069,ORG0001,api_gateway,low,on_premises_datacenter,embedded_rtos,0.6151,0.5124,50.4,90,270,540,0,0.4315
ASSET000070,ORG0001,cloud_vm,medium,hybrid_cloud,linux,0.7387,0.4733,22.5,60,180,360,0,0.4289
ASSET000071,ORG0001,api_gateway,low,public_cloud_azure,android_iot,0.5471,0.6131,69.2,90,270,540,1,0.334
ASSET000072,ORG0001,saas_integration,low,on_premises_datacenter,android_iot,0.5279,0.6155,35.4,90,270,540,1,0.1579
ASSET000073,ORG0001,container_workload,medium,on_premises_datacenter,windows,0.6755,0.5448,112.8,60,180,360,1,0.5539
ASSET000074,ORG0001,api_gateway,high,on_premises_datacenter,macos,0.8202,0.6054,57.4,30,90,180,1,0.4696
ASSET000075,ORG0001,saas_integration,low,public_cloud_aws,macos,0.6619,0.668,79.9,90,270,540,0,0.4267
ASSET000076,ORG0001,web_application,low,ot_ics_network,freebsd,0.5907,0.4889,84.7,90,270,540,0,0.3549
ASSET000077,ORG0001,network_service,medium,edge_iot_fleet,macos,0.6613,0.5223,82.7,60,180,360,1,0.6287
ASSET000078,ORG0001,iot_firmware_device,high,hybrid_cloud,windows,0.7591,0.5164,48.5,30,90,180,1,0.3571
ASSET000079,ORG0001,saas_integration,medium,edge_iot_fleet,linux,0.7214,0.5324,61.1,60,180,360,1,0.3711
ASSET000080,ORG0001,container_workload,critical,public_cloud_azure,linux,0.8289,0.6533,31.5,7,21,42,1,0.2263
ASSET000081,ORG0001,network_service,high,ot_ics_network,embedded_rtos,0.7873,0.4994,107.0,30,90,180,0,0.4165
ASSET000082,ORG0001,saas_integration,critical,public_cloud_azure,linux,0.8717,0.6723,24.8,7,21,42,1,0.2264
ASSET000083,ORG0001,web_application,medium,public_cloud_gcp,embedded_rtos,0.7224,0.5689,71.7,60,180,360,1,0.407
ASSET000084,ORG0001,supply_chain_dependency,low,ot_ics_network,windows,0.565,0.5721,73.9,90,270,540,0,0.543
ASSET000085,ORG0001,network_service,critical,on_premises_datacenter,linux,0.7971,0.4535,37.8,7,21,42,0,0.4588
ASSET000086,ORG0001,container_workload,critical,on_premises_datacenter,android_iot,0.887,0.5015,29.0,7,21,42,0,0.5917
ASSET000087,ORG0001,web_application,high,public_cloud_aws,macos,0.8216,0.5153,96.5,30,90,180,0,0.2836
ASSET000088,ORG0001,network_service,low,public_cloud_gcp,android_iot,0.5955,0.4904,59.8,90,270,540,0,0.3052
ASSET000089,ORG0001,api_gateway,high,ot_ics_network,linux,0.857,0.5988,39.9,30,90,180,1,0.3521
ASSET000090,ORG0001,api_gateway,medium,public_cloud_aws,embedded_rtos,0.702,0.5919,105.6,60,180,360,0,0.41
ASSET000091,ORG0001,network_service,low,hybrid_cloud,macos,0.6274,0.6235,83.5,90,270,540,1,0.4172
ASSET000092,ORG0001,iot_firmware_device,low,public_cloud_gcp,embedded_rtos,0.4468,0.59,56.4,90,270,540,0,0.2333
ASSET000093,ORG0001,supply_chain_dependency,medium,public_cloud_aws,linux,0.7759,0.5915,31.7,60,180,360,0,0.4707
ASSET000094,ORG0001,database_server,low,public_cloud_aws,windows,0.5814,0.5691,49.7,90,270,540,0,0.378
ASSET000095,ORG0001,saas_integration,medium,public_cloud_azure,windows,0.65,0.5949,31.1,60,180,360,0,0.43
ASSET000096,ORG0001,ot_ics_controller,high,public_cloud_aws,android_iot,0.7831,0.5489,48.6,30,90,180,0,0.3579
ASSET000097,ORG0001,api_gateway,medium,public_cloud_gcp,linux,0.7089,0.6165,62.3,60,180,360,0,0.3183
ASSET000098,ORG0001,saas_integration,high,public_cloud_aws,freebsd,0.7531,0.5898,33.4,30,90,180,0,0.6379
ASSET000099,ORG0001,endpoint_workstation,low,hybrid_cloud,android_iot,0.6054,0.5875,74.9,90,270,540,1,0.6447
ASSET000100,ORG0001,server_on_premises,critical,on_premises_datacenter,windows,0.8948,0.537,46.8,7,21,42,0,0.3071
ASSET000101,ORG0001,api_gateway,medium,saas_dependent,windows,0.6808,0.5732,65.4,60,180,360,0,0.3138
ASSET000102,ORG0001,server_on_premises,high,on_premises_datacenter,freebsd,0.7474,0.7138,58.4,30,90,180,0,0.5095
ASSET000103,ORG0001,cloud_vm,high,public_cloud_azure,windows,0.8,0.5284,47.1,30,90,180,0,0.229
ASSET000104,ORG0001,endpoint_workstation,medium,public_cloud_gcp,linux,0.7203,0.5123,61.3,60,180,360,0,0.5778
ASSET000105,ORG0001,supply_chain_dependency,low,hybrid_cloud,embedded_rtos,0.5368,0.5426,76.0,90,270,540,0,0.3217
ASSET000106,ORG0001,database_server,high,public_cloud_aws,freebsd,0.8656,0.6406,63.5,30,90,180,0,0.3728
ASSET000107,ORG0001,endpoint_workstation,medium,on_premises_datacenter,macos,0.6795,0.4857,35.3,60,180,360,0,0.4122
ASSET000108,ORG0001,saas_integration,low,hybrid_cloud,android_iot,0.5783,0.6351,55.0,90,270,540,0,0.4324
ASSET000109,ORG0001,api_gateway,high,saas_dependent,linux,0.7927,0.5612,87.9,30,90,180,0,0.253
ASSET000110,ORG0001,web_application,high,public_cloud_azure,macos,0.7989,0.5693,40.6,30,90,180,1,0.6451
ASSET000111,ORG0001,ot_ics_controller,low,saas_dependent,android_iot,0.6339,0.6282,98.2,90,270,540,0,0.4363
ASSET000112,ORG0001,network_service,high,edge_iot_fleet,macos,0.7458,0.42,35.2,30,90,180,0,0.3611
ASSET000113,ORG0001,saas_integration,high,public_cloud_gcp,macos,0.7565,0.5452,26.8,30,90,180,1,0.367
ASSET000114,ORG0001,database_server,medium,public_cloud_aws,embedded_rtos,0.6584,0.5921,31.5,60,180,360,1,0.4528
ASSET000115,ORG0001,ot_ics_controller,low,edge_iot_fleet,freebsd,0.633,0.659,45.2,90,270,540,0,0.2632
ASSET000116,ORG0001,ot_ics_controller,low,public_cloud_aws,freebsd,0.5733,0.4877,57.7,90,270,540,0,0.5426
ASSET000117,ORG0001,endpoint_workstation,low,on_premises_datacenter,embedded_rtos,0.5853,0.5377,30.8,90,270,540,0,0.5472
ASSET000118,ORG0001,cloud_vm,high,public_cloud_azure,linux,0.8189,0.6445,39.4,30,90,180,0,0.4575
ASSET000119,ORG0001,network_service,low,public_cloud_gcp,android_iot,0.5962,0.496,98.0,90,270,540,0,0.4717
ASSET000120,ORG0001,database_server,high,edge_iot_fleet,linux,0.7812,0.6681,46.1,30,90,180,0,0.5538
ASSET000121,ORG0001,database_server,medium,public_cloud_aws,windows,0.6823,0.5852,45.1,60,180,360,0,0.396
ASSET000122,ORG0001,container_workload,medium,public_cloud_gcp,freebsd,0.7093,0.5402,70.1,60,180,360,1,0.3729
ASSET000123,ORG0001,supply_chain_dependency,medium,on_premises_datacenter,embedded_rtos,0.7122,0.5296,89.4,60,180,360,0,0.3565
ASSET000124,ORG0001,supply_chain_dependency,medium,hybrid_cloud,android_iot,0.7213,0.5707,58.8,60,180,360,0,0.1855
ASSET000125,ORG0001,saas_integration,medium,hybrid_cloud,macos,0.6482,0.6178,23.6,60,180,360,0,0.5026
ASSET000126,ORG0001,database_server,medium,public_cloud_azure,freebsd,0.6714,0.4182,78.4,60,180,360,0,0.5572
ASSET000127,ORG0001,endpoint_workstation,medium,saas_dependent,linux,0.7263,0.5549,54.6,60,180,360,0,0.3895
ASSET000128,ORG0001,server_on_premises,low,saas_dependent,embedded_rtos,0.5292,0.5846,106.6,90,270,540,0,0.6192
ASSET000129,ORG0001,endpoint_workstation,critical,public_cloud_azure,windows,0.9838,0.6065,27.0,7,21,42,1,0.3866
ASSET000130,ORG0001,database_server,critical,public_cloud_aws,android_iot,0.912,0.5231,39.2,7,21,42,1,0.3829
ASSET000131,ORG0001,web_application,medium,saas_dependent,android_iot,0.7011,0.5424,47.5,60,180,360,0,0.6
ASSET000132,ORG0001,network_service,critical,public_cloud_gcp,windows,0.9138,0.6418,32.8,7,21,42,1,0.2595
ASSET000133,ORG0001,supply_chain_dependency,medium,saas_dependent,windows,0.7603,0.6555,55.9,60,180,360,0,0.1653
ASSET000134,ORG0001,iot_firmware_device,low,on_premises_datacenter,linux,0.5658,0.5121,160.7,90,270,540,0,0.5058
ASSET000135,ORG0001,database_server,critical,hybrid_cloud,macos,0.8624,0.638,36.7,7,21,42,0,0.4948
ASSET000136,ORG0001,iot_firmware_device,medium,public_cloud_aws,embedded_rtos,0.8005,0.5419,134.8,60,180,360,1,0.1957
ASSET000137,ORG0001,cloud_vm,medium,public_cloud_azure,embedded_rtos,0.7269,0.5545,79.7,60,180,360,0,0.6012
ASSET000138,ORG0001,supply_chain_dependency,low,saas_dependent,freebsd,0.558,0.5113,23.4,90,270,540,0,0.2903
ASSET000139,ORG0001,network_service,medium,public_cloud_azure,embedded_rtos,0.7688,0.4836,49.5,60,180,360,1,0.2491
ASSET000140,ORG0001,container_workload,low,public_cloud_aws,macos,0.5769,0.5607,154.1,90,270,540,0,0.3634
ASSET000141,ORG0001,container_workload,critical,ot_ics_network,freebsd,0.915,0.5946,16.5,7,21,42,1,0.5861
ASSET000142,ORG0001,saas_integration,low,public_cloud_aws,linux,0.5851,0.4314,153.7,90,270,540,0,0.5856
ASSET000143,ORG0001,cloud_vm,high,public_cloud_aws,windows,0.7701,0.6137,39.1,30,90,180,0,0.4815
ASSET000144,ORG0001,iot_firmware_device,medium,public_cloud_azure,linux,0.6671,0.5458,44.0,60,180,360,0,0.4055
ASSET000145,ORG0001,server_on_premises,low,hybrid_cloud,macos,0.5084,0.597,93.2,90,270,540,0,0.4316
ASSET000146,ORG0001,cloud_vm,medium,ot_ics_network,windows,0.6827,0.5797,84.4,60,180,360,1,0.5486
ASSET000147,ORG0001,database_server,medium,on_premises_datacenter,freebsd,0.7236,0.6004,73.6,60,180,360,0,0.3503
ASSET000148,ORG0001,web_application,critical,on_premises_datacenter,android_iot,0.909,0.5514,16.6,7,21,42,0,0.3422
ASSET000149,ORG0001,supply_chain_dependency,low,public_cloud_gcp,embedded_rtos,0.5695,0.5236,103.6,90,270,540,1,0.4874
ASSET000150,ORG0001,server_on_premises,low,hybrid_cloud,freebsd,0.5601,0.5755,80.3,90,270,540,0,0.4128
ASSET000151,ORG0001,web_application,low,public_cloud_azure,android_iot,0.5922,0.5876,30.9,90,270,540,0,0.2998
ASSET000152,ORG0001,container_workload,low,edge_iot_fleet,linux,0.5646,0.6001,50.4,90,270,540,0,0.6445
ASSET000153,ORG0001,iot_firmware_device,high,public_cloud_azure,macos,0.8176,0.5233,33.3,30,90,180,0,0.4603
ASSET000154,ORG0001,container_workload,low,on_premises_datacenter,freebsd,0.5802,0.4818,65.9,90,270,540,0,0.5208
ASSET000155,ORG0001,ot_ics_controller,low,public_cloud_aws,embedded_rtos,0.614,0.5264,103.1,90,270,540,0,0.4181
ASSET000156,ORG0001,server_on_premises,critical,hybrid_cloud,windows,0.939,0.4264,36.8,7,21,42,0,0.5884
ASSET000157,ORG0001,ot_ics_controller,critical,hybrid_cloud,linux,0.8757,0.6255,27.6,7,21,42,0,0.3802
ASSET000158,ORG0001,database_server,low,public_cloud_azure,linux,0.6395,0.5599,93.5,90,270,540,0,0.4887
ASSET000159,ORG0001,server_on_premises,low,ot_ics_network,windows,0.6228,0.4615,158.4,90,270,540,0,0.5678
ASSET000160,ORG0001,iot_firmware_device,low,on_premises_datacenter,android_iot,0.604,0.5672,90.2,90,270,540,0,0.5722
ASSET000161,ORG0002,supply_chain_dependency,low,saas_dependent,android_iot,0.609,0.443,73.2,90,270,540,0,0.3958
ASSET000162,ORG0002,web_application,low,public_cloud_azure,android_iot,0.5046,0.466,199.3,90,270,540,0,0.3167
ASSET000163,ORG0002,database_server,critical,hybrid_cloud,macos,0.7339,0.4838,51.7,7,21,42,0,0.4461
ASSET000164,ORG0002,web_application,high,on_premises_datacenter,android_iot,0.7535,0.5137,65.2,30,90,180,1,0.369
ASSET000165,ORG0002,server_on_premises,low,hybrid_cloud,linux,0.605,0.5907,76.1,90,270,540,1,0.4446
ASSET000166,ORG0002,network_service,medium,public_cloud_azure,android_iot,0.6512,0.3888,59.8,60,180,360,0,0.4596
ASSET000167,ORG0002,container_workload,high,hybrid_cloud,freebsd,0.727,0.5156,37.5,30,90,180,1,0.396
ASSET000168,ORG0002,endpoint_workstation,low,ot_ics_network,android_iot,0.5851,0.5412,47.4,90,270,540,0,0.5318
ASSET000169,ORG0002,ot_ics_controller,low,ot_ics_network,embedded_rtos,0.5112,0.4666,68.1,90,270,540,0,0.2587
ASSET000170,ORG0002,saas_integration,high,public_cloud_azure,embedded_rtos,0.8028,0.5776,90.5,30,90,180,0,0.3945
ASSET000171,ORG0002,network_service,medium,on_premises_datacenter,macos,0.7204,0.5165,28.6,60,180,360,0,0.4337
ASSET000172,ORG0002,iot_firmware_device,medium,public_cloud_gcp,linux,0.6589,0.3641,56.6,60,180,360,0,0.4212
ASSET000173,ORG0002,endpoint_workstation,medium,public_cloud_aws,macos,0.691,0.36,57.4,60,180,360,0,0.5426
ASSET000174,ORG0002,ot_ics_controller,medium,ot_ics_network,windows,0.6913,0.5312,71.7,60,180,360,0,0.3095
ASSET000175,ORG0002,saas_integration,medium,saas_dependent,windows,0.6628,0.4227,71.5,60,180,360,0,0.5143
ASSET000176,ORG0002,server_on_premises,medium,hybrid_cloud,embedded_rtos,0.6359,0.564,32.6,60,180,360,0,0.2765
ASSET000177,ORG0002,web_application,medium,hybrid_cloud,linux,0.6462,0.515,42.2,60,180,360,1,0.3529
ASSET000178,ORG0002,database_server,high,saas_dependent,linux,0.7843,0.3915,55.9,30,90,180,1,0.2293
ASSET000179,ORG0002,iot_firmware_device,medium,hybrid_cloud,embedded_rtos,0.6494,0.5276,74.3,60,180,360,1,0.4503
ASSET000180,ORG0002,api_gateway,medium,edge_iot_fleet,macos,0.7288,0.5188,36.3,60,180,360,1,0.5346
ASSET000181,ORG0002,ot_ics_controller,high,saas_dependent,embedded_rtos,0.7126,0.4283,62.5,30,90,180,0,0.2492
ASSET000182,ORG0002,database_server,high,on_premises_datacenter,windows,0.7822,0.5396,53.9,30,90,180,0,0.4856
ASSET000183,ORG0002,saas_integration,critical,edge_iot_fleet,windows,0.7103,0.5084,30.1,7,21,42,0,0.4982
ASSET000184,ORG0002,api_gateway,low,ot_ics_network,freebsd,0.6051,0.36,111.5,90,270,540,0,0.4404
ASSET000185,ORG0002,supply_chain_dependency,medium,hybrid_cloud,macos,0.6179,0.5529,40.0,60,180,360,0,0.5354
ASSET000186,ORG0002,endpoint_workstation,low,public_cloud_azure,android_iot,0.5447,0.3445,176.2,90,270,540,0,0.3253
ASSET000187,ORG0002,database_server,medium,saas_dependent,linux,0.6309,0.4882,59.7,60,180,360,0,0.4662
ASSET000188,ORG0002,server_on_premises,low,ot_ics_network,macos,0.5793,0.4312,70.7,90,270,540,1,0.4443
ASSET000189,ORG0002,server_on_premises,medium,public_cloud_aws,macos,0.5962,0.5215,44.4,60,180,360,1,0.3665
ASSET000190,ORG0002,web_application,medium,on_premises_datacenter,macos,0.6798,0.4579,70.1,60,180,360,0,0.47
ASSET000191,ORG0002,server_on_premises,high,on_premises_datacenter,android_iot,0.7544,0.4935,61.1,30,90,180,1,0.3956
ASSET000192,ORG0002,ot_ics_controller,medium,public_cloud_gcp,linux,0.6275,0.4696,73.1,60,180,360,0,0.5323
ASSET000193,ORG0002,web_application,critical,hybrid_cloud,windows,0.8005,0.4736,36.2,7,21,42,1,0.4275
ASSET000194,ORG0002,web_application,high,edge_iot_fleet,embedded_rtos,0.654,0.5092,66.6,30,90,180,0,0.3046
ASSET000195,ORG0002,endpoint_workstation,low,on_premises_datacenter,macos,0.5202,0.5351,55.9,90,270,540,0,0.3582
ASSET000196,ORG0002,cloud_vm,high,ot_ics_network,macos,0.7621,0.5052,160.7,30,90,180,0,0.4309
ASSET000197,ORG0002,saas_integration,high,ot_ics_network,macos,0.7339,0.3667,61.5,30,90,180,0,0.1947
ASSET000198,ORG0002,network_service,low,saas_dependent,embedded_rtos,0.5811,0.4733,69.3,90,270,540,0,0.502
ASSET000199,ORG0002,database_server,low,on_premises_datacenter,macos,0.4737,0.4785,81.9,90,270,540,1,0.2866
ASSET000200,ORG0002,server_on_premises,critical,public_cloud_gcp,android_iot,0.8018,0.4472,48.0,7,21,42,0,0.3721
ASSET000201,ORG0002,network_service,medium,saas_dependent,freebsd,0.7336,0.3668,51.4,60,180,360,0,0.4681
ASSET000202,ORG0002,database_server,medium,ot_ics_network,freebsd,0.6803,0.4274,69.0,60,180,360,0,0.3455
ASSET000203,ORG0002,api_gateway,low,public_cloud_azure,linux,0.5821,0.5216,82.2,90,270,540,0,0.3897
ASSET000204,ORG0002,api_gateway,medium,saas_dependent,macos,0.6758,0.5394,48.1,60,180,360,0,0.4812
ASSET000205,ORG0002,supply_chain_dependency,high,public_cloud_gcp,embedded_rtos,0.7447,0.4696,35.4,30,90,180,0,0.5359
ASSET000206,ORG0002,endpoint_workstation,low,hybrid_cloud,freebsd,0.5892,0.4715,87.9,90,270,540,0,0.306
ASSET000207,ORG0002,network_service,medium,public_cloud_gcp,macos,0.7239,0.4186,28.7,60,180,360,1,0.3373
ASSET000208,ORG0002,saas_integration,medium,ot_ics_network,android_iot,0.6599,0.4106,69.7,60,180,360,1,0.2878
ASSET000209,ORG0002,ot_ics_controller,medium,on_premises_datacenter,linux,0.6318,0.3635,128.5,60,180,360,0,0.2524
ASSET000210,ORG0002,ot_ics_controller,low,saas_dependent,embedded_rtos,0.5614,0.4153,71.5,90,270,540,1,0.4194
ASSET000211,ORG0002,endpoint_workstation,high,public_cloud_aws,freebsd,0.8013,0.5116,43.0,30,90,180,1,0.3332
ASSET000212,ORG0002,iot_firmware_device,critical,edge_iot_fleet,freebsd,0.7923,0.582,18.5,7,21,42,0,0.402
ASSET000213,ORG0002,ot_ics_controller,high,ot_ics_network,android_iot,0.7674,0.4093,63.5,30,90,180,0,0.2492
ASSET000214,ORG0002,ot_ics_controller,medium,on_premises_datacenter,windows,0.6301,0.4199,92.9,60,180,360,0,0.4688
ASSET000215,ORG0002,network_service,medium,ot_ics_network,embedded_rtos,0.6086,0.438,54.7,60,180,360,1,0.2459
ASSET000216,ORG0002,ot_ics_controller,medium,hybrid_cloud,macos,0.6852,0.4043,41.6,60,180,360,0,0.3635
ASSET000217,ORG0002,cloud_vm,medium,public_cloud_azure,linux,0.6633,0.5118,71.6,60,180,360,1,0.2054
ASSET000218,ORG0002,endpoint_workstation,low,ot_ics_network,linux,0.6354,0.3986,121.7,90,270,540,0,0.2561
ASSET000219,ORG0002,server_on_premises,high,hybrid_cloud,freebsd,0.7969,0.6119,42.2,30,90,180,0,0.1886
ASSET000220,ORG0002,container_workload,low,on_premises_datacenter,freebsd,0.5396,0.4303,65.3,90,270,540,0,0.453
ASSET000221,ORG0002,database_server,medium,public_cloud_azure,windows,0.6824,0.5527,67.3,60,180,360,0,0.3412
ASSET000222,ORG0002,database_server,low,edge_iot_fleet,freebsd,0.5491,0.6093,28.8,90,270,540,0,0.3308
ASSET000223,ORG0002,web_application,medium,hybrid_cloud,freebsd,0.6358,0.5353,57.3,60,180,360,1,0.2633
ASSET000224,ORG0002,api_gateway,low,hybrid_cloud,android_iot,0.6191,0.5259,51.6,90,270,540,0,0.396
ASSET000225,ORG0002,supply_chain_dependency,low,public_cloud_aws,macos,0.5848,0.5144,81.0,90,270,540,0,0.4916
ASSET000226,ORG0002,endpoint_workstation,medium,ot_ics_network,windows,0.632,0.5695,86.0,60,180,360,0,0.2048
ASSET000227,ORG0002,supply_chain_dependency,critical,public_cloud_gcp,linux,0.8224,0.461,26.1,7,21,42,1,0.5689
ASSET000228,ORG0002,web_application,high,saas_dependent,embedded_rtos,0.6967,0.5227,66.7,30,90,180,0,0.4126
ASSET000229,ORG0002,cloud_vm,critical,public_cloud_azure,freebsd,0.8393,0.3757,27.2,7,21,42,1,0.3653
ASSET000230,ORG0002,database_server,high,saas_dependent,embedded_rtos,0.7301,0.4921,19.9,30,90,180,0,0.2987
ASSET000231,ORG0002,iot_firmware_device,medium,ot_ics_network,windows,0.7163,0.3888,22.5,60,180,360,1,0.5042
ASSET000232,ORG0002,network_service,medium,on_premises_datacenter,freebsd,0.6759,0.4491,117.0,60,180,360,1,0.494
ASSET000233,ORG0002,supply_chain_dependency,high,on_premises_datacenter,windows,0.7197,0.4607,53.2,30,90,180,0,0.2385
ASSET000234,ORG0002,cloud_vm,medium,ot_ics_network,embedded_rtos,0.776,0.5244,44.8,60,180,360,1,0.3008
ASSET000235,ORG0002,api_gateway,critical,on_premises_datacenter,embedded_rtos,0.8668,0.4807,20.3,7,21,42,0,0.5245
ASSET000236,ORG0002,supply_chain_dependency,low,public_cloud_aws,linux,0.5423,0.4288,65.3,90,270,540,0,0.4631
ASSET000237,ORG0002,supply_chain_dependency,high,edge_iot_fleet,linux,0.7665,0.3534,57.8,30,90,180,0,0.3081
ASSET000238,ORG0002,api_gateway,low,hybrid_cloud,macos,0.5938,0.4817,106.4,90,270,540,0,0.4512
ASSET000239,ORG0002,container_workload,low,hybrid_cloud,embedded_rtos,0.555,0.6079,82.5,90,270,540,0,0.1501
ASSET000240,ORG0002,server_on_premises,low,public_cloud_aws,macos,0.6208,0.5304,150.4,90,270,540,0,0.4408
ASSET000241,ORG0002,container_workload,low,ot_ics_network,linux,0.6174,0.4759,70.6,90,270,540,0,0.444
ASSET000242,ORG0002,supply_chain_dependency,low,public_cloud_aws,android_iot,0.5451,0.4711,84.9,90,270,540,1,0.3718
ASSET000243,ORG0002,ot_ics_controller,low,edge_iot_fleet,freebsd,0.495,0.4234,68.4,90,270,540,0,0.3929
ASSET000244,ORG0002,ot_ics_controller,high,public_cloud_gcp,macos,0.8389,0.4566,43.5,30,90,180,1,0.4343
ASSET000245,ORG0002,iot_firmware_device,low,public_cloud_azure,windows,0.6173,0.5257,149.1,90,270,540,0,0.4679
ASSET000246,ORG0002,database_server,medium,public_cloud_gcp,android_iot,0.5995,0.5016,60.0,60,180,360,0,0.3714
ASSET000247,ORG0002,iot_firmware_device,medium,ot_ics_network,freebsd,0.7268,0.5513,66.3,60,180,360,0,0.321
ASSET000248,ORG0002,iot_firmware_device,high,public_cloud_aws,windows,0.783,0.4938,27.0,30,90,180,0,0.287
ASSET000249,ORG0002,web_application,medium,public_cloud_azure,android_iot,0.6501,0.5376,38.6,60,180,360,0,0.4543
ASSET000250,ORG0002,supply_chain_dependency,high,public_cloud_gcp,freebsd,0.6913,0.3954,40.0,30,90,180,1,0.47
ASSET000251,ORG0002,endpoint_workstation,high,public_cloud_gcp,linux,0.7307,0.4342,89.4,30,90,180,0,0.5049
ASSET000252,ORG0002,container_workload,high,public_cloud_aws,windows,0.7186,0.4807,67.8,30,90,180,1,0.2978
ASSET000253,ORG0002,database_server,medium,saas_dependent,embedded_rtos,0.6954,0.4402,53.1,60,180,360,0,0.4708
ASSET000254,ORG0002,web_application,low,public_cloud_aws,windows,0.5176,0.6188,58.9,90,270,540,0,0.3046
ASSET000255,ORG0002,cloud_vm,medium,on_premises_datacenter,macos,0.6439,0.4148,48.5,60,180,360,0,0.4064
ASSET000256,ORG0002,iot_firmware_device,low,public_cloud_gcp,android_iot,0.6174,0.5167,142.6,90,270,540,1,0.3803
ASSET000257,ORG0002,network_service,high,public_cloud_gcp,android_iot,0.7979,0.462,47.0,30,90,180,1,0.3266
ASSET000258,ORG0002,network_service,high,edge_iot_fleet,windows,0.7555,0.4134,55.4,30,90,180,0,0.2881
ASSET000259,ORG0002,container_workload,low,ot_ics_network,freebsd,0.6074,0.5254,85.8,90,270,540,1,0.3732
ASSET000260,ORG0002,supply_chain_dependency,high,public_cloud_aws,freebsd,0.7124,0.4708,78.2,30,90,180,1,0.3724
ASSET000261,ORG0002,database_server,medium,on_premises_datacenter,linux,0.6485,0.4861,33.8,60,180,360,1,0.3809
ASSET000262,ORG0002,ot_ics_controller,critical,public_cloud_azure,freebsd,0.8259,0.4475,60.4,7,21,42,0,0.3846
ASSET000263,ORG0002,ot_ics_controller,low,on_premises_datacenter,macos,0.6063,0.5364,49.8,90,270,540,0,0.4638
ASSET000264,ORG0002,ot_ics_controller,low,public_cloud_azure,linux,0.6031,0.4821,108.9,90,270,540,0,0.2665
ASSET000265,ORG0002,api_gateway,high,edge_iot_fleet,android_iot,0.7303,0.4428,76.5,30,90,180,0,0.1864
ASSET000266,ORG0002,supply_chain_dependency,medium,saas_dependent,freebsd,0.7773,0.4496,103.0,60,180,360,0,0.3904
ASSET000267,ORG0002,database_server,low,hybrid_cloud,macos,0.5603,0.4809,73.6,90,270,540,1,0.4285
ASSET000268,ORG0002,ot_ics_controller,high,public_cloud_aws,android_iot,0.7804,0.5158,75.3,30,90,180,0,0.4333
ASSET000269,ORG0002,api_gateway,critical,public_cloud_azure,embedded_rtos,0.7503,0.5788,29.0,7,21,42,1,0.4578
ASSET000270,ORG0002,iot_firmware_device,medium,hybrid_cloud,macos,0.6134,0.4432,63.7,60,180,360,1,0.3756
ASSET000271,ORG0002,container_workload,low,edge_iot_fleet,macos,0.6369,0.5858,91.4,90,270,540,1,0.2452
ASSET000272,ORG0002,network_service,critical,on_premises_datacenter,macos,0.83,0.5471,25.9,7,21,42,1,0.3313
ASSET000273,ORG0002,ot_ics_controller,medium,ot_ics_network,android_iot,0.6657,0.5338,104.0,60,180,360,0,0.4526
ASSET000274,ORG0002,network_service,low,public_cloud_gcp,linux,0.5012,0.4219,47.1,90,270,540,0,0.2362
ASSET000275,ORG0002,iot_firmware_device,high,hybrid_cloud,android_iot,0.7309,0.3647,31.1,30,90,180,0,0.2952
ASSET000276,ORG0002,iot_firmware_device,low,hybrid_cloud,freebsd,0.5957,0.4936,94.0,90,270,540,1,0.4379
ASSET000277,ORG0002,endpoint_workstation,medium,hybrid_cloud,macos,0.6681,0.5006,57.6,60,180,360,1,0.4617
ASSET000278,ORG0002,api_gateway,medium,edge_iot_fleet,embedded_rtos,0.7127,0.3909,57.6,60,180,360,1,0.3483
ASSET000279,ORG0002,cloud_vm,high,saas_dependent,windows,0.6686,0.4752,34.3,30,90,180,0,0.2973
ASSET000280,ORG0002,ot_ics_controller,medium,public_cloud_azure,linux,0.6461,0.3989,33.2,60,180,360,0,0.2751
ASSET000281,ORG0002,database_server,critical,ot_ics_network,linux,0.7967,0.5387,56.2,7,21,42,1,0.5124
ASSET000282,ORG0002,endpoint_workstation,low,saas_dependent,freebsd,0.6239,0.4889,103.7,90,270,540,0,0.3289
ASSET000283,ORG0002,container_workload,high,hybrid_cloud,macos,0.7793,0.4142,51.7,30,90,180,0,0.2593
ASSET000284,ORG0002,cloud_vm,low,public_cloud_azure,freebsd,0.6163,0.3793,76.9,90,270,540,1,0.3431
ASSET000285,ORG0002,api_gateway,high,public_cloud_azure,windows,0.753,0.4282,48.2,30,90,180,0,0.3544
ASSET000286,ORG0002,supply_chain_dependency,medium,on_premises_datacenter,freebsd,0.6803,0.5606,105.5,60,180,360,0,0.384
ASSET000287,ORG0002,network_service,medium,edge_iot_fleet,windows,0.7651,0.4027,125.2,60,180,360,0,0.349
ASSET000288,ORG0002,cloud_vm,critical,on_premises_datacenter,android_iot,0.8694,0.3569,29.8,7,21,42,1,0.2162
ASSET000289,ORG0002,database_server,low,saas_dependent,embedded_rtos,0.5751,0.5387,76.2,90,270,540,0,0.515
ASSET000290,ORG0002,server_on_premises,low,edge_iot_fleet,android_iot,0.5559,0.4917,93.1,90,270,540,0,0.3999
ASSET000291,ORG0002,server_on_premises,high,public_cloud_aws,freebsd,0.7533,0.5509,61.6,30,90,180,0,0.3042
ASSET000292,ORG0002,server_on_premises,medium,edge_iot_fleet,windows,0.6345,0.535,46.4,60,180,360,0,0.3648
ASSET000293,ORG0002,endpoint_workstation,low,edge_iot_fleet,embedded_rtos,0.6588,0.4872,91.3,90,270,540,0,0.4035
ASSET000294,ORG0002,network_service,low,public_cloud_azure,android_iot,0.4971,0.4877,38.5,90,270,540,0,0.4993
ASSET000295,ORG0002,server_on_premises,low,public_cloud_aws,freebsd,0.539,0.489,81.6,90,270,540,1,0.4683
ASSET000296,ORG0002,network_service,medium,on_premises_datacenter,freebsd,0.6405,0.5315,124.0,60,180,360,0,0.3998
ASSET000297,ORG0002,iot_firmware_device,low,edge_iot_fleet,macos,0.5571,0.5384,54.8,90,270,540,0,0.3842
ASSET000298,ORG0002,saas_integration,low,on_premises_datacenter,linux,0.5714,0.522,46.2,90,270,540,0,0.4491
ASSET000299,ORG0002,endpoint_workstation,medium,ot_ics_network,freebsd,0.6942,0.4898,73.1,60,180,360,1,0.4536
ASSET000300,ORG0002,cloud_vm,low,saas_dependent,macos,0.5149,0.4437,71.8,90,270,540,1,0.4248
ASSET000301,ORG0002,api_gateway,low,ot_ics_network,windows,0.5748,0.4514,86.2,90,270,540,1,0.3151
ASSET000302,ORG0002,cloud_vm,low,edge_iot_fleet,freebsd,0.5289,0.4388,76.0,90,270,540,0,0.5565
ASSET000303,ORG0002,container_workload,medium,edge_iot_fleet,windows,0.6369,0.4957,73.6,60,180,360,1,0.4622
ASSET000304,ORG0002,server_on_premises,high,public_cloud_aws,freebsd,0.7926,0.3696,29.0,30,90,180,0,0.3725
ASSET000305,ORG0002,database_server,low,public_cloud_aws,windows,0.531,0.4164,80.7,90,270,540,1,0.4965
ASSET000306,ORG0002,iot_firmware_device,low,public_cloud_aws,android_iot,0.5517,0.3972,69.2,90,270,540,0,0.49
ASSET000307,ORG0002,network_service,high,public_cloud_aws,android_iot,0.7989,0.4945,34.1,30,90,180,1,0.3568
ASSET000308,ORG0002,network_service,medium,hybrid_cloud,macos,0.7613,0.5478,26.4,60,180,360,0,0.4439
ASSET000309,ORG0002,network_service,medium,on_premises_datacenter,linux,0.6138,0.5122,45.8,60,180,360,1,0.4616
ASSET000310,ORG0002,supply_chain_dependency,medium,public_cloud_gcp,embedded_rtos,0.6258,0.5298,67.3,60,180,360,1,0.4369
ASSET000311,ORG0002,database_server,medium,ot_ics_network,linux,0.7179,0.4864,64.2,60,180,360,0,0.3109
ASSET000312,ORG0002,database_server,medium,on_premises_datacenter,windows,0.6762,0.455,66.0,60,180,360,1,0.1994
ASSET000313,ORG0002,endpoint_workstation,high,on_premises_datacenter,freebsd,0.745,0.5402,74.7,30,90,180,0,0.5361
ASSET000314,ORG0002,iot_firmware_device,medium,hybrid_cloud,macos,0.7026,0.5799,31.8,60,180,360,0,0.4222
ASSET000315,ORG0002,network_service,high,public_cloud_aws,freebsd,0.7382,0.4919,50.2,30,90,180,0,0.3783
ASSET000316,ORG0002,server_on_premises,low,ot_ics_network,macos,0.5975,0.599,99.2,90,270,540,0,0.4112
ASSET000317,ORG0002,iot_firmware_device,critical,ot_ics_network,android_iot,0.8325,0.4648,54.3,7,21,42,0,0.4652
ASSET000318,ORG0002,iot_firmware_device,low,saas_dependent,linux,0.5911,0.4852,58.6,90,270,540,0,0.4024
ASSET000319,ORG0002,cloud_vm,medium,public_cloud_gcp,macos,0.6741,0.4514,29.4,60,180,360,1,0.3301
ASSET000320,ORG0002,server_on_premises,low,on_premises_datacenter,freebsd,0.5012,0.5222,52.7,90,270,540,0,0.3601
ASSET000321,ORG0003,endpoint_workstation,low,public_cloud_gcp,android_iot,0.5389,0.4991,52.8,90,270,540,1,0.6097
ASSET000322,ORG0003,supply_chain_dependency,medium,on_premises_datacenter,linux,0.7077,0.5135,44.0,60,180,360,0,0.5706
ASSET000323,ORG0003,ot_ics_controller,critical,on_premises_datacenter,linux,0.845,0.4726,33.4,7,21,42,0,0.2903
ASSET000324,ORG0003,web_application,high,public_cloud_azure,windows,0.7643,0.4376,65.7,30,90,180,0,0.4199
ASSET000325,ORG0003,container_workload,medium,public_cloud_azure,macos,0.7116,0.5009,33.9,60,180,360,0,0.3938
ASSET000326,ORG0003,iot_firmware_device,high,public_cloud_gcp,freebsd,0.8045,0.6308,43.2,30,90,180,0,0.5959
ASSET000327,ORG0003,endpoint_workstation,medium,ot_ics_network,freebsd,0.7447,0.5387,170.5,60,180,360,0,0.3318
ASSET000328,ORG0003,database_server,high,public_cloud_azure,freebsd,0.8165,0.6432,38.3,30,90,180,1,0.5302
ASSET000329,ORG0003,database_server,high,saas_dependent,embedded_rtos,0.7873,0.5333,75.3,30,90,180,1,0.43
ASSET000330,ORG0003,iot_firmware_device,low,public_cloud_azure,linux,0.6573,0.5728,51.6,90,270,540,0,0.543
ASSET000331,ORG0003,cloud_vm,high,edge_iot_fleet,freebsd,0.7295,0.4516,91.5,30,90,180,1,0.3457
ASSET000332,ORG0003,iot_firmware_device,medium,ot_ics_network,embedded_rtos,0.7176,0.5963,86.1,60,180,360,0,0.5642
ASSET000333,ORG0003,ot_ics_controller,low,public_cloud_gcp,linux,0.6146,0.6091,67.9,90,270,540,0,0.4738
ASSET000334,ORG0003,api_gateway,medium,hybrid_cloud,windows,0.7532,0.545,70.1,60,180,360,1,0.3267
ASSET000335,ORG0003,ot_ics_controller,critical,public_cloud_azure,embedded_rtos,0.922,0.5402,41.6,7,21,42,0,0.3601
ASSET000336,ORG0003,saas_integration,low,public_cloud_azure,linux,0.5675,0.5519,56.5,90,270,540,0,0.4571
ASSET000337,ORG0003,database_server,low,on_premises_datacenter,embedded_rtos,0.5951,0.6246,69.0,90,270,540,1,0.3146
ASSET000338,ORG0003,network_service,low,public_cloud_azure,macos,0.6172,0.4504,89.0,90,270,540,1,0.4842
ASSET000339,ORG0003,database_server,medium,edge_iot_fleet,windows,0.7376,0.6269,82.0,60,180,360,1,0.4428
ASSET000340,ORG0003,saas_integration,high,on_premises_datacenter,windows,0.8012,0.5178,30.9,30,90,180,0,0.4043
ASSET000341,ORG0003,endpoint_workstation,high,public_cloud_azure,windows,0.8044,0.4591,50.3,30,90,180,1,0.4172
ASSET000342,ORG0003,endpoint_workstation,low,public_cloud_gcp,linux,0.602,0.5417,73.9,90,270,540,0,0.1777
ASSET000343,ORG0003,network_service,medium,public_cloud_gcp,android_iot,0.6737,0.4825,48.2,60,180,360,1,0.2753
ASSET000344,ORG0003,cloud_vm,low,on_premises_datacenter,freebsd,0.6355,0.424,80.0,90,270,540,0,0.5841
ASSET000345,ORG0003,saas_integration,low,on_premises_datacenter,windows,0.6055,0.5282,80.2,90,270,540,0,0.4103
ASSET000346,ORG0003,ot_ics_controller,medium,on_premises_datacenter,windows,0.7095,0.4884,85.2,60,180,360,0,0.4698
ASSET000347,ORG0003,endpoint_workstation,high,saas_dependent,android_iot,0.81,0.6041,46.8,30,90,180,0,0.5288
ASSET000348,ORG0003,supply_chain_dependency,medium,ot_ics_network,android_iot,0.6418,0.5448,49.5,60,180,360,0,0.2873
ASSET000349,ORG0003,container_workload,low,public_cloud_gcp,embedded_rtos,0.6368,0.5336,87.3,90,270,540,0,0.3801
ASSET000350,ORG0003,iot_firmware_device,low,saas_dependent,embedded_rtos,0.5803,0.5308,40.4,90,270,540,0,0.4268
ASSET000351,ORG0003,network_service,medium,saas_dependent,embedded_rtos,0.7167,0.5598,36.2,60,180,360,1,0.5725
ASSET000352,ORG0003,container_workload,high,saas_dependent,linux,0.8072,0.4925,31.6,30,90,180,0,0.5339
ASSET000353,ORG0003,container_workload,high,saas_dependent,macos,0.7072,0.5254,47.7,30,90,180,1,0.3931
ASSET000354,ORG0003,container_workload,critical,ot_ics_network,android_iot,0.8265,0.477,43.6,7,21,42,1,0.383
ASSET000355,ORG0003,network_service,high,ot_ics_network,embedded_rtos,0.788,0.5217,61.3,30,90,180,0,0.2886
ASSET000356,ORG0003,ot_ics_controller,medium,public_cloud_azure,embedded_rtos,0.732,0.5866,61.3,60,180,360,0,0.3964
ASSET000357,ORG0003,supply_chain_dependency,high,public_cloud_azure,linux,0.7876,0.508,42.4,30,90,180,0,0.2618
ASSET000358,ORG0003,server_on_premises,critical,hybrid_cloud,windows,0.9681,0.5684,56.6,7,21,42,0,0.3142
ASSET000359,ORG0003,supply_chain_dependency,low,on_premises_datacenter,freebsd,0.5598,0.5169,63.8,90,270,540,0,0.3723
ASSET000360,ORG0003,database_server,low,public_cloud_gcp,macos,0.6265,0.5266,63.8,90,270,540,1,0.4105
ASSET000361,ORG0003,web_application,high,public_cloud_azure,freebsd,0.7485,0.4743,24.6,30,90,180,1,0.5984
ASSET000362,ORG0003,web_application,low,saas_dependent,windows,0.5665,0.4576,143.5,90,270,540,1,0.4777
ASSET000363,ORG0003,iot_firmware_device,medium,edge_iot_fleet,macos,0.6292,0.5677,40.7,60,180,360,0,0.3363
ASSET000364,ORG0003,saas_integration,medium,public_cloud_azure,embedded_rtos,0.6623,0.373,50.8,60,180,360,0,0.4007
ASSET000365,ORG0003,database_server,medium,ot_ics_network,windows,0.6931,0.4866,91.6,60,180,360,0,0.4686
ASSET000366,ORG0003,iot_firmware_device,medium,public_cloud_aws,macos,0.7298,0.5152,131.1,60,180,360,1,0.5442
ASSET000367,ORG0003,server_on_premises,medium,edge_iot_fleet,linux,0.6901,0.5652,61.9,60,180,360,0,0.5409
ASSET000368,ORG0003,endpoint_workstation,low,public_cloud_gcp,macos,0.6892,0.5249,44.3,90,270,540,1,0.4343
ASSET000369,ORG0003,database_server,low,hybrid_cloud,windows,0.5633,0.5311,146.6,90,270,540,1,0.391
ASSET000370,ORG0003,api_gateway,critical,on_premises_datacenter,embedded_rtos,0.8687,0.6304,20.5,7,21,42,0,0.55
ASSET000371,ORG0003,cloud_vm,low,on_premises_datacenter,macos,0.5276,0.5497,124.0,90,270,540,0,0.3279
ASSET000372,ORG0003,container_workload,low,edge_iot_fleet,linux,0.5692,0.5057,50.1,90,270,540,0,0.5214
ASSET000373,ORG0003,container_workload,critical,hybrid_cloud,linux,0.869,0.4923,17.9,7,21,42,0,0.5838
ASSET000374,ORG0003,container_workload,medium,saas_dependent,macos,0.6357,0.4681,23.0,60,180,360,1,0.541
ASSET000375,ORG0003,database_server,medium,hybrid_cloud,macos,0.7085,0.5542,78.6,60,180,360,1,0.338
ASSET000376,ORG0003,network_service,high,edge_iot_fleet,linux,0.7425,0.4852,55.9,30,90,180,1,0.3852
ASSET000377,ORG0003,ot_ics_controller,medium,public_cloud_azure,embedded_rtos,0.6834,0.5374,93.4,60,180,360,0,0.2507
ASSET000378,ORG0003,api_gateway,high,edge_iot_fleet,macos,0.8801,0.4869,38.0,30,90,180,1,0.4188
ASSET000379,ORG0003,endpoint_workstation,medium,ot_ics_network,windows,0.7163,0.6109,35.8,60,180,360,0,0.4745
ASSET000380,ORG0003,iot_firmware_device,medium,saas_dependent,linux,0.705,0.5437,49.9,60,180,360,1,0.5023
ASSET000381,ORG0003,ot_ics_controller,low,public_cloud_azure,android_iot,0.525,0.5091,123.2,90,270,540,0,0.4835
ASSET000382,ORG0003,endpoint_workstation,medium,on_premises_datacenter,windows,0.668,0.5122,42.9,60,180,360,0,0.3813
ASSET000383,ORG0003,container_workload,medium,hybrid_cloud,linux,0.7528,0.6649,85.7,60,180,360,0,0.3563
ASSET000384,ORG0003,endpoint_workstation,low,public_cloud_aws,android_iot,0.5865,0.6339,74.4,90,270,540,0,0.3298
ASSET000385,ORG0003,cloud_vm,medium,saas_dependent,windows,0.657,0.4773,34.4,60,180,360,0,0.3892
ASSET000386,ORG0003,server_on_premises,medium,public_cloud_gcp,linux,0.7021,0.4871,58.1,60,180,360,0,0.5764
ASSET000387,ORG0003,cloud_vm,high,on_premises_datacenter,linux,0.7782,0.5216,49.1,30,90,180,0,0.3725
ASSET000388,ORG0003,iot_firmware_device,high,on_premises_datacenter,linux,0.8194,0.5531,77.6,30,90,180,0,0.4831
ASSET000389,ORG0003,saas_integration,medium,public_cloud_azure,windows,0.6926,0.4811,52.6,60,180,360,1,0.441
ASSET000390,ORG0003,endpoint_workstation,critical,ot_ics_network,macos,0.8369,0.3738,36.3,7,21,42,0,0.2957
ASSET000391,ORG0003,saas_integration,low,edge_iot_fleet,windows,0.562,0.4276,48.4,90,270,540,0,0.4719
ASSET000392,ORG0003,saas_integration,high,hybrid_cloud,linux,0.8022,0.5796,105.6,30,90,180,0,0.3921
ASSET000393,ORG0003,saas_integration,low,hybrid_cloud,linux,0.5809,0.6187,53.9,90,270,540,0,0.5203
ASSET000394,ORG0003,database_server,medium,hybrid_cloud,macos,0.6663,0.4881,75.4,60,180,360,1,0.4817
ASSET000395,ORG0003,server_on_premises,low,on_premises_datacenter,freebsd,0.6204,0.4719,60.3,90,270,540,1,0.3673
ASSET000396,ORG0003,cloud_vm,high,public_cloud_azure,freebsd,0.7789,0.5488,24.3,30,90,180,1,0.5856
ASSET000397,ORG0003,container_workload,low,public_cloud_gcp,embedded_rtos,0.6378,0.5068,88.3,90,270,540,0,0.5148
ASSET000398,ORG0003,saas_integration,low,on_premises_datacenter,android_iot,0.5265,0.4506,49.1,90,270,540,1,0.4836
ASSET000399,ORG0003,supply_chain_dependency,medium,ot_ics_network,freebsd,0.6985,0.567,62.9,60,180,360,0,0.4174
ASSET000400,ORG0003,iot_firmware_device,low,edge_iot_fleet,android_iot,0.523,0.5353,65.5,90,270,540,0,0.5225
ASSET000401,ORG0003,supply_chain_dependency,medium,hybrid_cloud,embedded_rtos,0.6555,0.5651,24.3,60,180,360,1,0.4829
ASSET000402,ORG0003,supply_chain_dependency,high,edge_iot_fleet,embedded_rtos,0.8696,0.563,79.2,30,90,180,0,0.5089
ASSET000403,ORG0003,database_server,medium,edge_iot_fleet,linux,0.6908,0.5225,47.6,60,180,360,0,0.4734
ASSET000404,ORG0003,ot_ics_controller,medium,public_cloud_gcp,freebsd,0.668,0.459,80.9,60,180,360,0,0.2994
ASSET000405,ORG0003,supply_chain_dependency,low,on_premises_datacenter,embedded_rtos,0.6036,0.6043,75.7,90,270,540,0,0.4491
ASSET000406,ORG0003,supply_chain_dependency,medium,on_premises_datacenter,linux,0.6655,0.4676,43.7,60,180,360,1,0.4228
ASSET000407,ORG0003,supply_chain_dependency,low,on_premises_datacenter,freebsd,0.548,0.4203,67.2,90,270,540,0,0.3992
ASSET000408,ORG0003,ot_ics_controller,critical,edge_iot_fleet,embedded_rtos,0.8908,0.4765,54.6,7,21,42,0,0.457
ASSET000409,ORG0003,cloud_vm,medium,public_cloud_gcp,linux,0.7113,0.6412,36.8,60,180,360,1,0.4195
ASSET000410,ORG0003,network_service,high,hybrid_cloud,macos,0.7684,0.5027,60.5,30,90,180,0,0.5638
ASSET000411,ORG0003,endpoint_workstation,medium,ot_ics_network,linux,0.7136,0.535,46.4,60,180,360,1,0.2674
ASSET000412,ORG0003,cloud_vm,medium,saas_dependent,macos,0.6956,0.5311,63.1,60,180,360,0,0.4144
ASSET000413,ORG0003,ot_ics_controller,medium,public_cloud_aws,android_iot,0.6935,0.5288,41.6,60,180,360,1,0.5462
ASSET000414,ORG0003,database_server,low,public_cloud_aws,macos,0.562,0.4745,160.4,90,270,540,1,0.4473
ASSET000415,ORG0003,web_application,low,public_cloud_gcp,freebsd,0.5857,0.4792,120.4,90,270,540,1,0.4134
ASSET000416,ORG0003,database_server,medium,ot_ics_network,macos,0.6598,0.552,34.8,60,180,360,0,0.178
ASSET000417,ORG0003,saas_integration,low,hybrid_cloud,freebsd,0.5652,0.5812,64.8,90,270,540,0,0.3548
ASSET000418,ORG0003,ot_ics_controller,critical,public_cloud_aws,embedded_rtos,0.849,0.5574,21.4,7,21,42,0,0.563
ASSET000419,ORG0003,api_gateway,critical,hybrid_cloud,embedded_rtos,0.8372,0.5226,25.8,7,21,42,0,0.2751
ASSET000420,ORG0003,database_server,medium,saas_dependent,windows,0.6304,0.5672,38.0,60,180,360,0,0.4251
ASSET000421,ORG0003,endpoint_workstation,low,saas_dependent,linux,0.529,0.4697,74.5,90,270,540,0,0.4904
ASSET000422,ORG0003,database_server,medium,on_premises_datacenter,windows,0.6277,0.5272,51.9,60,180,360,0,0.4555
ASSET000423,ORG0003,supply_chain_dependency,medium,hybrid_cloud,freebsd,0.7419,0.612,72.8,60,180,360,0,0.5337
ASSET000424,ORG0003,network_service,medium,ot_ics_network,freebsd,0.6935,0.4409,79.4,60,180,360,0,0.2379
ASSET000425,ORG0003,endpoint_workstation,medium,on_premises_datacenter,macos,0.6093,0.5505,65.4,60,180,360,1,0.4137
ASSET000426,ORG0003,supply_chain_dependency,high,hybrid_cloud,linux,0.7749,0.4844,40.1,30,90,180,1,0.2514
ASSET000427,ORG0003,web_application,low,public_cloud_aws,android_iot,0.6231,0.5273,67.0,90,270,540,0,0.3226
ASSET000428,ORG0003,database_server,high,ot_ics_network,macos,0.8562,0.4855,41.9,30,90,180,1,0.4421
ASSET000429,ORG0003,saas_integration,high,edge_iot_fleet,freebsd,0.794,0.5564,60.1,30,90,180,0,0.2901
ASSET000430,ORG0003,saas_integration,critical,public_cloud_azure,windows,0.8173,0.4864,37.8,7,21,42,0,0.4938
ASSET000431,ORG0003,cloud_vm,high,ot_ics_network,freebsd,0.7567,0.5783,64.2,30,90,180,1,0.5787
ASSET000432,ORG0003,server_on_premises,low,public_cloud_gcp,windows,0.5833,0.4856,38.3,90,270,540,0,0.501
ASSET000433,ORG0003,ot_ics_controller,medium,public_cloud_gcp,windows,0.6986,0.5223,41.9,60,180,360,0,0.5111
ASSET000434,ORG0003,api_gateway,high,saas_dependent,macos,0.7248,0.6382,31.9,30,90,180,1,0.5145
ASSET000435,ORG0003,saas_integration,medium,edge_iot_fleet,windows,0.7182,0.4725,59.3,60,180,360,0,0.4578
ASSET000436,ORG0003,endpoint_workstation,medium,on_premises_datacenter,linux,0.7099,0.4892,76.8,60,180,360,1,0.5014
ASSET000437,ORG0003,supply_chain_dependency,low,public_cloud_aws,macos,0.5924,0.4865,82.4,90,270,540,1,0.3966
ASSET000438,ORG0003,api_gateway,high,ot_ics_network,linux,0.7807,0.5573,58.6,30,90,180,0,0.2629
ASSET000439,ORG0003,web_application,high,public_cloud_azure,freebsd,0.8168,0.5093,62.7,30,90,180,0,0.4658
ASSET000440,ORG0003,endpoint_workstation,medium,edge_iot_fleet,macos,0.7295,0.5197,64.3,60,180,360,1,0.536
ASSET000441,ORG0003,container_workload,critical,hybrid_cloud,windows,0.9317,0.6014,31.9,7,21,42,0,0.481
ASSET000442,ORG0003,ot_ics_controller,medium,ot_ics_network,windows,0.6783,0.4621,45.1,60,180,360,1,0.4745
ASSET000443,ORG0003,network_service,critical,public_cloud_aws,embedded_rtos,0.8119,0.566,39.4,7,21,42,0,0.3456
ASSET000444,ORG0003,endpoint_workstation,low,public_cloud_aws,windows,0.5093,0.4685,47.7,90,270,540,1,0.418
ASSET000445,ORG0003,endpoint_workstation,medium,public_cloud_azure,freebsd,0.6711,0.6217,53.0,60,180,360,0,0.4877
ASSET000446,ORG0003,supply_chain_dependency,low,hybrid_cloud,macos,0.6193,0.4739,54.4,90,270,540,0,0.4437
ASSET000447,ORG0003,supply_chain_dependency,medium,on_premises_datacenter,freebsd,0.7183,0.509,76.5,60,180,360,1,0.2872
ASSET000448,ORG0003,web_application,medium,edge_iot_fleet,android_iot,0.6778,0.5244,64.7,60,180,360,0,0.441
ASSET000449,ORG0003,endpoint_workstation,medium,hybrid_cloud,android_iot,0.6707,0.5366,30.4,60,180,360,0,0.4509
ASSET000450,ORG0003,endpoint_workstation,medium,on_premises_datacenter,macos,0.7062,0.5481,53.2,60,180,360,0,0.327
ASSET000451,ORG0003,endpoint_workstation,medium,hybrid_cloud,freebsd,0.7063,0.4218,41.1,60,180,360,0,0.4393
ASSET000452,ORG0003,iot_firmware_device,high,edge_iot_fleet,macos,0.7495,0.5971,56.3,30,90,180,0,0.2981
ASSET000453,ORG0003,cloud_vm,low,on_premises_datacenter,freebsd,0.5895,0.5091,67.0,90,270,540,0,0.57
ASSET000454,ORG0003,network_service,high,public_cloud_azure,linux,0.7692,0.3961,51.5,30,90,180,1,0.3442
ASSET000455,ORG0003,ot_ics_controller,medium,on_premises_datacenter,embedded_rtos,0.7057,0.5192,78.6,60,180,360,0,0.5583
ASSET000456,ORG0003,server_on_premises,medium,edge_iot_fleet,embedded_rtos,0.6712,0.6376,58.1,60,180,360,1,0.53
ASSET000457,ORG0003,api_gateway,medium,public_cloud_aws,embedded_rtos,0.656,0.5526,19.1,60,180,360,0,0.3679
ASSET000458,ORG0003,network_service,medium,edge_iot_fleet,windows,0.6616,0.5734,89.7,60,180,360,1,0.3022
ASSET000459,ORG0003,ot_ics_controller,high,public_cloud_aws,android_iot,0.7853,0.4514,69.5,30,90,180,0,0.6109
ASSET000460,ORG0003,endpoint_workstation,critical,on_premises_datacenter,macos,0.89,0.5515,33.6,7,21,42,1,0.3869
ASSET000461,ORG0003,ot_ics_controller,low,public_cloud_azure,windows,0.5569,0.4943,75.4,90,270,540,0,0.4597
ASSET000462,ORG0003,cloud_vm,medium,ot_ics_network,linux,0.7188,0.5217,43.9,60,180,360,0,0.372
ASSET000463,ORG0003,iot_firmware_device,high,saas_dependent,linux,0.7092,0.6076,26.3,30,90,180,0,0.4328
ASSET000464,ORG0003,ot_ics_controller,low,public_cloud_azure,android_iot,0.5958,0.6026,73.5,90,270,540,0,0.5726
ASSET000465,ORG0003,web_application,low,public_cloud_aws,linux,0.5668,0.532,123.3,90,270,540,0,0.5759
ASSET000466,ORG0003,server_on_premises,high,public_cloud_gcp,windows,0.7209,0.5171,52.9,30,90,180,0,0.4232
ASSET000467,ORG0003,iot_firmware_device,low,hybrid_cloud,windows,0.5869,0.4593,112.3,90,270,540,1,0.4228
ASSET000468,ORG0003,supply_chain_dependency,medium,edge_iot_fleet,macos,0.7065,0.498,61.1,60,180,360,1,0.3303
ASSET000469,ORG0003,api_gateway,low,ot_ics_network,freebsd,0.5356,0.4425,128.0,90,270,540,0,0.3628
ASSET000470,ORG0003,cloud_vm,critical,edge_iot_fleet,macos,0.8571,0.5348,23.1,7,21,42,0,0.3318
ASSET000471,ORG0003,iot_firmware_device,high,on_premises_datacenter,linux,0.7412,0.5519,56.7,30,90,180,1,0.6029
ASSET000472,ORG0003,web_application,low,hybrid_cloud,windows,0.5271,0.5418,137.9,90,270,540,1,0.2084
ASSET000473,ORG0003,database_server,medium,hybrid_cloud,android_iot,0.6802,0.5627,37.6,60,180,360,1,0.5502
ASSET000474,ORG0003,container_workload,medium,ot_ics_network,linux,0.6891,0.4851,78.5,60,180,360,1,0.5064
ASSET000475,ORG0003,cloud_vm,medium,public_cloud_aws,windows,0.7782,0.5979,41.9,60,180,360,0,0.3759
ASSET000476,ORG0003,container_workload,low,public_cloud_azure,macos,0.5847,0.4916,71.4,90,270,540,0,0.4274
ASSET000477,ORG0003,api_gateway,critical,public_cloud_aws,macos,0.862,0.4933,37.0,7,21,42,0,0.526
ASSET000478,ORG0003,cloud_vm,high,edge_iot_fleet,embedded_rtos,0.8004,0.5557,49.3,30,90,180,0,0.3724
ASSET000479,ORG0003,cloud_vm,critical,edge_iot_fleet,linux,0.8873,0.5099,25.8,7,21,42,0,0.4553
ASSET000480,ORG0003,network_service,low,saas_dependent,embedded_rtos,0.5967,0.4314,44.2,90,270,540,0,0.2847
ASSET000481,ORG0004,cloud_vm,medium,saas_dependent,freebsd,0.8038,0.8858,24.0,60,180,360,1,0.4868
ASSET000482,ORG0004,ot_ics_controller,low,edge_iot_fleet,macos,0.7238,0.817,45.4,90,270,540,1,0.5233
ASSET000483,ORG0004,iot_firmware_device,medium,hybrid_cloud,android_iot,0.8747,0.6925,63.2,60,180,360,0,0.6964
ASSET000484,ORG0004,cloud_vm,low,ot_ics_network,windows,0.6825,0.822,46.7,90,270,540,1,0.5595
ASSET000485,ORG0004,cloud_vm,low,on_premises_datacenter,linux,0.5984,0.8416,69.3,90,270,540,0,0.5407
ASSET000486,ORG0004,api_gateway,medium,on_premises_datacenter,android_iot,0.8365,0.8225,40.1,60,180,360,1,0.7149
ASSET000487,ORG0004,ot_ics_controller,critical,on_premises_datacenter,android_iot,0.9797,0.7616,18.8,7,21,42,1,0.3546
ASSET000488,ORG0004,web_application,low,hybrid_cloud,macos,0.7757,0.8847,106.2,90,270,540,1,0.6289
ASSET000489,ORG0004,supply_chain_dependency,low,hybrid_cloud,linux,0.6728,0.7974,98.2,90,270,540,1,0.7011
ASSET000490,ORG0004,web_application,medium,public_cloud_azure,linux,0.7915,0.8082,50.3,60,180,360,0,0.8398
ASSET000491,ORG0004,container_workload,high,hybrid_cloud,embedded_rtos,0.9282,0.836,38.3,30,90,180,0,0.474
ASSET000492,ORG0004,network_service,low,saas_dependent,macos,0.702,0.7853,36.6,90,270,540,0,0.6584
ASSET000493,ORG0004,network_service,critical,edge_iot_fleet,linux,1.0,0.7419,22.8,7,21,42,0,0.4133
ASSET000494,ORG0004,container_workload,critical,public_cloud_gcp,freebsd,1.0,0.6931,24.8,7,21,42,1,0.3644
ASSET000495,ORG0004,iot_firmware_device,medium,public_cloud_gcp,freebsd,0.8162,0.8637,119.6,60,180,360,0,0.3069
ASSET000496,ORG0004,server_on_premises,medium,ot_ics_network,embedded_rtos,0.8167,0.78,57.3,60,180,360,0,0.5404
ASSET000497,ORG0004,cloud_vm,medium,public_cloud_azure,android_iot,0.8241,0.7575,76.5,60,180,360,0,0.5823
ASSET000498,ORG0004,server_on_premises,high,saas_dependent,embedded_rtos,0.9351,0.807,43.5,30,90,180,1,0.7391
ASSET000499,ORG0004,server_on_premises,low,ot_ics_network,windows,0.7128,0.8429,51.7,90,270,540,1,0.4537
ASSET000500,ORG0004,endpoint_workstation,medium,public_cloud_gcp,android_iot,0.7408,0.8757,52.2,60,180,360,1,0.6117
ASSET000501,ORG0004,iot_firmware_device,critical,ot_ics_network,embedded_rtos,0.9874,0.725,37.2,7,21,42,0,0.7943
ASSET000502,ORG0004,ot_ics_controller,high,saas_dependent,android_iot,0.9565,0.7782,43.9,30,90,180,0,0.6709
ASSET000503,ORG0004,ot_ics_controller,high,public_cloud_gcp,linux,0.9933,0.9057,28.4,30,90,180,0,0.8542
ASSET000504,ORG0004,ot_ics_controller,high,public_cloud_aws,windows,0.9448,0.8744,21.1,30,90,180,0,0.6766
ASSET000505,ORG0004,network_service,medium,public_cloud_azure,embedded_rtos,0.8435,0.783,43.9,60,180,360,1,0.498
ASSET000506,ORG0004,cloud_vm,medium,public_cloud_azure,freebsd,0.8562,0.7605,76.2,60,180,360,1,0.7689
ASSET000507,ORG0004,server_on_premises,critical,public_cloud_azure,macos,1.0,0.9658,35.9,7,21,42,1,0.7426
ASSET000508,ORG0004,web_application,high,edge_iot_fleet,android_iot,0.9854,0.8917,62.3,30,90,180,0,0.7893
ASSET000509,ORG0004,iot_firmware_device,critical,saas_dependent,macos,1.0,0.8186,42.0,7,21,42,1,0.8803
ASSET000510,ORG0004,endpoint_workstation,medium,public_cloud_azure,macos,0.885,0.8215,60.5,60,180,360,0,0.7191
ASSET000511,ORG0004,web_application,low,ot_ics_network,macos,0.715,0.7566,78.2,90,270,540,0,0.5516
ASSET000512,ORG0004,endpoint_workstation,low,edge_iot_fleet,embedded_rtos,0.6358,0.7801,80.8,90,270,540,0,0.7394
ASSET000513,ORG0004,iot_firmware_device,low,public_cloud_gcp,embedded_rtos,0.6058,0.8722,74.1,90,270,540,1,0.6182
ASSET000514,ORG0004,supply_chain_dependency,medium,ot_ics_network,freebsd,0.7978,0.9398,56.9,60,180,360,0,0.5671
ASSET000515,ORG0004,iot_firmware_device,medium,public_cloud_aws,android_iot,0.8072,0.8194,39.7,60,180,360,1,0.4073
ASSET000516,ORG0004,endpoint_workstation,medium,on_premises_datacenter,macos,0.8093,0.7451,27.6,60,180,360,1,0.2896
ASSET000517,ORG0004,container_workload,critical,ot_ics_network,linux,0.9385,0.8907,31.3,7,21,42,1,0.63
ASSET000518,ORG0004,server_on_premises,medium,public_cloud_azure,windows,0.7764,0.822,75.1,60,180,360,1,0.4904
ASSET000519,ORG0004,web_application,high,edge_iot_fleet,freebsd,0.8765,0.8046,63.7,30,90,180,0,0.7214
ASSET000520,ORG0004,ot_ics_controller,high,public_cloud_gcp,windows,1.0,0.8805,32.3,30,90,180,0,0.582
ASSET000521,ORG0004,api_gateway,high,hybrid_cloud,freebsd,0.9247,0.8492,35.7,30,90,180,1,0.4215
ASSET000522,ORG0004,endpoint_workstation,high,hybrid_cloud,android_iot,0.917,0.8298,59.7,30,90,180,0,0.6677
ASSET000523,ORG0004,iot_firmware_device,medium,public_cloud_azure,android_iot,0.8134,0.8537,71.0,60,180,360,0,0.6307
ASSET000524,ORG0004,ot_ics_controller,medium,public_cloud_gcp,macos,0.8007,0.8023,36.6,60,180,360,1,0.6192
ASSET000525,ORG0004,server_on_premises,high,ot_ics_network,embedded_rtos,0.9256,0.7882,36.2,30,90,180,1,0.6428
ASSET000526,ORG0004,web_application,medium,ot_ics_network,macos,0.8116,0.6789,67.8,60,180,360,0,0.4804
ASSET000527,ORG0004,endpoint_workstation,medium,public_cloud_azure,freebsd,0.7902,0.7547,56.4,60,180,360,1,0.6901
ASSET000528,ORG0004,endpoint_workstation,high,on_premises_datacenter,freebsd,0.9002,0.7277,67.4,30,90,180,1,0.5412
ASSET000529,ORG0004,endpoint_workstation,low,public_cloud_aws,macos,0.6768,0.8711,69.1,90,270,540,0,0.37
ASSET000530,ORG0004,server_on_premises,high,on_premises_datacenter,windows,0.9392,0.8302,29.3,30,90,180,1,0.8383
ASSET000531,ORG0004,endpoint_workstation,low,public_cloud_gcp,embedded_rtos,0.75,0.8163,94.8,90,270,540,0,0.7183
ASSET000532,ORG0004,api_gateway,low,saas_dependent,linux,0.6898,0.8098,136.4,90,270,540,1,0.7158
ASSET000533,ORG0004,endpoint_workstation,high,on_premises_datacenter,embedded_rtos,0.9786,0.8507,41.2,30,90,180,1,0.4036
ASSET000534,ORG0004,api_gateway,low,public_cloud_azure,android_iot,0.6994,0.8152,86.6,90,270,540,0,0.4018
ASSET000535,ORG0004,endpoint_workstation,low,edge_iot_fleet,linux,0.7145,0.7863,104.1,90,270,540,0,0.5716
ASSET000536,ORG0004,network_service,low,public_cloud_azure,android_iot,0.6546,0.8089,91.8,90,270,540,1,0.4204
ASSET000537,ORG0004,web_application,high,edge_iot_fleet,windows,0.9341,0.8262,85.0,30,90,180,0,0.7493
ASSET000538,ORG0004,cloud_vm,low,on_premises_datacenter,android_iot,0.6845,0.814,36.2,90,270,540,0,0.6301
ASSET000539,ORG0004,web_application,critical,on_premises_datacenter,freebsd,0.938,0.8787,10.3,7,21,42,0,0.8824
ASSET000540,ORG0004,web_application,high,saas_dependent,freebsd,0.971,0.8469,62.4,30,90,180,1,0.7031
ASSET000541,ORG0004,cloud_vm,medium,edge_iot_fleet,android_iot,0.7561,0.7694,66.7,60,180,360,0,0.8116
ASSET000542,ORG0004,supply_chain_dependency,low,on_premises_datacenter,freebsd,0.6835,0.8002,80.1,90,270,540,1,0.5887
ASSET000543,ORG0004,database_server,medium,public_cloud_gcp,freebsd,0.8408,0.7814,45.9,60,180,360,0,0.528
ASSET000544,ORG0004,database_server,high,ot_ics_network,freebsd,0.9589,0.8341,31.9,30,90,180,0,0.5979
ASSET000545,ORG0004,container_workload,medium,ot_ics_network,linux,0.8923,0.7664,126.6,60,180,360,1,0.3721
ASSET000546,ORG0004,endpoint_workstation,medium,public_cloud_aws,embedded_rtos,0.8087,0.7093,58.3,60,180,360,1,0.7129
ASSET000547,ORG0004,ot_ics_controller,high,public_cloud_gcp,linux,0.7997,0.8722,46.9,30,90,180,0,0.8366
ASSET000548,ORG0004,container_workload,high,public_cloud_azure,linux,0.9568,0.8293,24.0,30,90,180,0,0.5841
ASSET000549,ORG0004,supply_chain_dependency,high,ot_ics_network,embedded_rtos,0.9798,0.8221,62.0,30,90,180,0,0.8554
ASSET000550,ORG0004,server_on_premises,medium,on_premises_datacenter,macos,0.8432,0.8881,28.0,60,180,360,1,0.5588
ASSET000551,ORG0004,cloud_vm,low,on_premises_datacenter,macos,0.7291,0.8872,79.5,90,270,540,0,0.6338
ASSET000552,ORG0004,server_on_premises,high,public_cloud_aws,linux,1.0,0.7844,46.1,30,90,180,0,0.6393
ASSET000553,ORG0004,iot_firmware_device,low,ot_ics_network,linux,0.7847,0.8868,55.0,90,270,540,1,0.6161
ASSET000554,ORG0004,ot_ics_controller,high,edge_iot_fleet,freebsd,0.9227,0.7891,83.2,30,90,180,0,0.8384
ASSET000555,ORG0004,saas_integration,low,saas_dependent,embedded_rtos,0.6989,0.7606,59.7,90,270,540,0,0.8443
ASSET000556,ORG0004,api_gateway,high,edge_iot_fleet,android_iot,0.9099,0.8015,102.0,30,90,180,0,0.5682
ASSET000557,ORG0004,database_server,medium,ot_ics_network,android_iot,0.8308,0.7954,30.6,60,180,360,0,0.5197
ASSET000558,ORG0004,cloud_vm,low,saas_dependent,linux,0.7218,0.8506,76.7,90,270,540,0,0.8359
ASSET000559,ORG0004,server_on_premises,medium,public_cloud_azure,macos,0.789,0.8757,50.9,60,180,360,0,0.6894
ASSET000560,ORG0004,web_application,high,hybrid_cloud,embedded_rtos,0.9828,0.8779,60.9,30,90,180,1,0.5317
ASSET000561,ORG0004,container_workload,critical,ot_ics_network,freebsd,1.0,0.8189,38.5,7,21,42,0,0.5852
ASSET000562,ORG0004,supply_chain_dependency,medium,public_cloud_gcp,linux,0.8383,0.8996,51.3,60,180,360,0,0.5173
ASSET000563,ORG0004,iot_firmware_device,low,on_premises_datacenter,freebsd,0.7295,0.897,95.4,90,270,540,0,0.7204
ASSET000564,ORG0004,web_application,low,on_premises_datacenter,android_iot,0.6738,0.874,88.3,90,270,540,1,0.6863
ASSET000565,ORG0004,saas_integration,medium,hybrid_cloud,freebsd,0.8134,0.8005,36.8,60,180,360,1,0.6559
ASSET000566,ORG0004,container_workload,high,hybrid_cloud,embedded_rtos,0.9479,0.8324,50.2,30,90,180,1,0.5389
ASSET000567,ORG0004,api_gateway,medium,public_cloud_azure,windows,0.7717,0.9828,63.1,60,180,360,1,0.4409
ASSET000568,ORG0004,network_service,low,public_cloud_azure,linux,0.6824,0.8055,78.7,90,270,540,0,0.5759
ASSET000569,ORG0004,network_service,low,public_cloud_gcp,embedded_rtos,0.7322,0.6534,266.6,90,270,540,0,0.4805
ASSET000570,ORG0004,web_application,critical,hybrid_cloud,embedded_rtos,1.0,0.7832,18.0,7,21,42,1,0.7223
ASSET000571,ORG0004,server_on_premises,critical,saas_dependent,freebsd,1.0,0.8161,58.6,7,21,42,0,0.7309
ASSET000572,ORG0004,container_workload,high,public_cloud_gcp,macos,0.9771,0.8171,27.2,30,90,180,0,0.6906
ASSET000573,ORG0004,supply_chain_dependency,low,on_premises_datacenter,windows,0.5841,0.8624,57.7,90,270,540,1,0.7299
ASSET000574,ORG0004,server_on_premises,critical,saas_dependent,windows,0.9704,0.8013,18.4,7,21,42,1,0.2327
ASSET000575,ORG0004,saas_integration,medium,ot_ics_network,macos,0.8417,0.641,28.0,60,180,360,0,0.4962
ASSET000576,ORG0004,database_server,low,public_cloud_gcp,macos,0.644,0.7681,69.2,90,270,540,1,0.5735
ASSET000577,ORG0004,ot_ics_controller,medium,public_cloud_gcp,freebsd,0.8398,0.74,60.7,60,180,360,0,0.4949
ASSET000578,ORG0004,container_workload,medium,public_cloud_gcp,macos,0.7944,0.8021,122.2,60,180,360,0,0.6963
ASSET000579,ORG0004,network_service,medium,public_cloud_aws,freebsd,0.8549,0.8166,44.2,60,180,360,0,0.5609
ASSET000580,ORG0004,ot_ics_controller,critical,edge_iot_fleet,macos,0.9876,0.8588,22.2,7,21,42,0,0.3196
ASSET000581,ORG0004,iot_firmware_device,medium,on_premises_datacenter,macos,0.834,0.9187,32.8,60,180,360,0,0.8135
ASSET000582,ORG0004,saas_integration,medium,edge_iot_fleet,windows,0.7161,0.8249,37.4,60,180,360,1,0.5602
ASSET000583,ORG0004,supply_chain_dependency,low,public_cloud_azure,android_iot,0.7143,0.7378,43.3,90,270,540,1,0.7658
ASSET000584,ORG0004,database_server,high,public_cloud_azure,linux,0.9646,0.8812,35.4,30,90,180,1,0.4974
ASSET000585,ORG0004,container_workload,critical,public_cloud_azure,windows,1.0,0.8044,33.8,7,21,42,0,0.7577
ASSET000586,ORG0004,cloud_vm,medium,public_cloud_azure,freebsd,0.7747,0.7413,77.0,60,180,360,0,0.3064
ASSET000587,ORG0004,database_server,high,on_premises_datacenter,linux,0.9764,0.8496,26.3,30,90,180,1,0.5528
ASSET000588,ORG0004,web_application,medium,hybrid_cloud,embedded_rtos,0.8144,0.6951,52.5,60,180,360,0,0.6969
ASSET000589,ORG0004,network_service,medium,saas_dependent,windows,0.8713,0.6965,108.0,60,180,360,1,0.7213
ASSET000590,ORG0004,database_server,high,on_premises_datacenter,macos,0.9645,0.7581,92.2,30,90,180,1,0.6267
ASSET000591,ORG0004,api_gateway,low,public_cloud_azure,embedded_rtos,0.7363,0.9452,76.0,90,270,540,1,0.5437
ASSET000592,ORG0004,ot_ics_controller,medium,on_premises_datacenter,windows,0.7156,0.8222,44.5,60,180,360,0,0.3416
ASSET000593,ORG0004,ot_ics_controller,critical,ot_ics_network,embedded_rtos,0.9998,0.923,38.3,7,21,42,0,0.7848
ASSET000594,ORG0004,api_gateway,critical,edge_iot_fleet,freebsd,1.0,0.8711,33.3,7,21,42,0,0.3199
ASSET000595,ORG0004,supply_chain_dependency,high,public_cloud_gcp,macos,0.966,0.7737,78.3,30,90,180,1,0.5427
ASSET000596,ORG0004,network_service,low,public_cloud_aws,freebsd,0.6829,0.8029,62.9,90,270,540,1,0.6345
ASSET000597,ORG0004,container_workload,high,saas_dependent,embedded_rtos,0.9607,0.8184,45.8,30,90,180,1,0.5154
ASSET000598,ORG0004,endpoint_workstation,high,public_cloud_azure,embedded_rtos,0.8723,0.8099,39.3,30,90,180,0,0.3182
ASSET000599,ORG0004,network_service,critical,hybrid_cloud,linux,1.0,0.7904,25.5,7,21,42,1,0.5313
ASSET000600,ORG0004,saas_integration,medium,edge_iot_fleet,linux,0.7753,0.8209,40.0,60,180,360,1,0.3999
ASSET000601,ORG0004,api_gateway,medium,on_premises_datacenter,windows,0.8117,0.8154,49.4,60,180,360,0,0.5713
ASSET000602,ORG0004,network_service,medium,on_premises_datacenter,embedded_rtos,0.7336,0.8787,57.2,60,180,360,0,0.581
ASSET000603,ORG0004,endpoint_workstation,high,ot_ics_network,embedded_rtos,0.9031,0.7687,22.8,30,90,180,0,0.7969
ASSET000604,ORG0004,container_workload,medium,on_premises_datacenter,freebsd,0.8827,0.7865,120.9,60,180,360,0,0.6956
ASSET000605,ORG0004,database_server,medium,saas_dependent,freebsd,0.8687,0.8542,50.1,60,180,360,0,0.3893
ASSET000606,ORG0004,cloud_vm,high,on_premises_datacenter,macos,0.9149,0.7379,46.3,30,90,180,0,0.5757
ASSET000607,ORG0004,ot_ics_controller,low,ot_ics_network,windows,0.6733,0.83,71.8,90,270,540,0,0.5934
ASSET000608,ORG0004,api_gateway,low,edge_iot_fleet,freebsd,0.6438,0.7719,72.1,90,270,540,0,0.7458
ASSET000609,ORG0004,endpoint_workstation,high,hybrid_cloud,linux,0.9174,0.9135,71.6,30,90,180,0,0.5407
ASSET000610,ORG0004,container_workload,medium,hybrid_cloud,android_iot,0.7989,0.8222,98.7,60,180,360,1,0.723
ASSET000611,ORG0004,iot_firmware_device,medium,hybrid_cloud,macos,0.8256,0.7805,44.8,60,180,360,0,0.3018
ASSET000612,ORG0004,network_service,medium,edge_iot_fleet,linux,0.9028,0.8509,50.0,60,180,360,0,0.7948
ASSET000613,ORG0004,container_workload,high,saas_dependent,freebsd,0.9717,0.805,32.6,30,90,180,1,0.3303
ASSET000614,ORG0004,network_service,medium,saas_dependent,embedded_rtos,0.8025,0.8704,73.5,60,180,360,0,0.6768
ASSET000615,ORG0004,supply_chain_dependency,critical,saas_dependent,macos,1.0,0.7593,41.6,7,21,42,0,0.602
ASSET000616,ORG0004,supply_chain_dependency,medium,saas_dependent,android_iot,0.8584,0.9093,54.9,60,180,360,1,0.4009
ASSET000617,ORG0004,iot_firmware_device,low,on_premises_datacenter,android_iot,0.7269,0.8742,115.1,90,270,540,1,0.6061
ASSET000618,ORG0004,network_service,medium,public_cloud_azure,windows,0.8195,0.9175,44.5,60,180,360,1,0.4321
ASSET000619,ORG0004,cloud_vm,medium,public_cloud_aws,windows,0.8048,0.8361,69.9,60,180,360,1,0.5726
ASSET000620,ORG0004,web_application,medium,ot_ics_network,android_iot,0.9236,0.8289,34.6,60,180,360,0,0.7098
ASSET000621,ORG0004,ot_ics_controller,medium,hybrid_cloud,freebsd,0.8099,0.7875,68.1,60,180,360,0,0.6318
ASSET000622,ORG0004,cloud_vm,medium,public_cloud_gcp,embedded_rtos,0.7891,0.7741,54.9,60,180,360,1,0.8249
ASSET000623,ORG0004,database_server,high,saas_dependent,android_iot,0.975,0.954,68.1,30,90,180,0,0.65
ASSET000624,ORG0004,server_on_premises,low,ot_ics_network,freebsd,0.6571,0.844,39.5,90,270,540,0,0.5358
ASSET000625,ORG0004,iot_firmware_device,critical,hybrid_cloud,windows,1.0,0.8841,45.2,7,21,42,0,0.684
ASSET000626,ORG0004,cloud_vm,medium,on_premises_datacenter,windows,0.8076,0.8027,32.6,60,180,360,1,0.8586
ASSET000627,ORG0004,api_gateway,medium,public_cloud_azure,macos,0.847,0.8592,100.9,60,180,360,0,0.7131
ASSET000628,ORG0004,endpoint_workstation,high,ot_ics_network,freebsd,0.9146,0.755,44.0,30,90,180,0,0.5796
ASSET000629,ORG0004,server_on_premises,high,on_premises_datacenter,windows,0.9069,0.8479,40.8,30,90,180,0,0.5842
ASSET000630,ORG0004,server_on_premises,high,edge_iot_fleet,embedded_rtos,0.879,0.9094,24.6,30,90,180,1,0.4597
ASSET000631,ORG0004,network_service,high,public_cloud_gcp,freebsd,0.9193,0.8451,48.1,30,90,180,1,0.515
ASSET000632,ORG0004,container_workload,low,public_cloud_aws,macos,0.6588,0.893,115.8,90,270,540,1,0.5598
ASSET000633,ORG0004,container_workload,medium,saas_dependent,windows,0.7661,0.8634,18.9,60,180,360,0,0.4961
ASSET000634,ORG0004,cloud_vm,medium,public_cloud_gcp,freebsd,0.8432,0.9212,47.8,60,180,360,0,0.4625
ASSET000635,ORG0004,endpoint_workstation,medium,saas_dependent,macos,0.8153,0.7777,60.0,60,180,360,0,0.7321
ASSET000636,ORG0004,cloud_vm,high,public_cloud_azure,macos,0.9177,0.8248,59.4,30,90,180,0,0.4564
ASSET000637,ORG0004,database_server,medium,hybrid_cloud,embedded_rtos,0.7884,0.8213,33.5,60,180,360,1,0.6865
ASSET000638,ORG0004,server_on_premises,medium,public_cloud_azure,linux,0.8627,0.8072,50.0,60,180,360,0,0.1694
ASSET000639,ORG0004,database_server,low,edge_iot_fleet,windows,0.6468,0.8134,157.9,90,270,540,1,0.7652
ASSET000640,ORG0004,cloud_vm,low,public_cloud_aws,embedded_rtos,0.7051,0.7963,35.9,90,270,540,1,0.4457
ASSET000641,ORG0005,server_on_premises,low,hybrid_cloud,freebsd,0.5358,0.4997,55.9,90,270,540,1,0.4359
ASSET000642,ORG0005,api_gateway,medium,public_cloud_azure,embedded_rtos,0.6952,0.4686,90.5,60,180,360,1,0.3112
ASSET000643,ORG0005,api_gateway,high,ot_ics_network,macos,0.7668,0.4608,81.1,30,90,180,0,0.4486
ASSET000644,ORG0005,cloud_vm,low,edge_iot_fleet,linux,0.6237,0.3906,75.3,90,270,540,1,0.5722
ASSET000645,ORG0005,saas_integration,medium,ot_ics_network,android_iot,0.7355,0.6367,39.6,60,180,360,0,0.524
ASSET000646,ORG0005,server_on_premises,high,public_cloud_azure,freebsd,0.7975,0.5611,66.8,30,90,180,0,0.4027
ASSET000647,ORG0005,container_workload,low,public_cloud_gcp,embedded_rtos,0.5612,0.5589,64.6,90,270,540,1,0.2058
ASSET000648,ORG0005,cloud_vm,high,ot_ics_network,embedded_rtos,0.8592,0.4917,117.7,30,90,180,0,0.5535
ASSET000649,ORG0005,supply_chain_dependency,high,public_cloud_azure,freebsd,0.7805,0.4834,32.5,30,90,180,0,0.2241
ASSET000650,ORG0005,database_server,low,on_premises_datacenter,macos,0.5535,0.4239,89.7,90,270,540,0,0.2309
ASSET000651,ORG0005,supply_chain_dependency,low,public_cloud_gcp,windows,0.5947,0.5087,72.7,90,270,540,0,0.3266
ASSET000652,ORG0005,iot_firmware_device,low,ot_ics_network,freebsd,0.549,0.5951,76.4,90,270,540,0,0.4483
ASSET000653,ORG0005,endpoint_workstation,low,public_cloud_gcp,freebsd,0.5847,0.5263,116.2,90,270,540,1,0.4839
ASSET000654,ORG0005,web_application,high,public_cloud_gcp,macos,0.7684,0.3761,33.4,30,90,180,0,0.2785
ASSET000655,ORG0005,network_service,medium,on_premises_datacenter,windows,0.6911,0.6126,47.7,60,180,360,1,0.4733
ASSET000656,ORG0005,web_application,medium,public_cloud_gcp,linux,0.7461,0.3458,57.3,60,180,360,0,0.5236
ASSET000657,ORG0005,ot_ics_controller,low,public_cloud_gcp,android_iot,0.6689,0.6285,76.6,90,270,540,0,0.5648
ASSET000658,ORG0005,api_gateway,high,hybrid_cloud,android_iot,0.7266,0.5384,48.2,30,90,180,1,0.4024
ASSET000659,ORG0005,supply_chain_dependency,medium,edge_iot_fleet,windows,0.7001,0.5297,50.7,60,180,360,0,0.2069
ASSET000660,ORG0005,endpoint_workstation,low,saas_dependent,linux,0.6191,0.5274,73.3,90,270,540,1,0.4942
ASSET000661,ORG0005,database_server,medium,hybrid_cloud,embedded_rtos,0.6368,0.4676,40.2,60,180,360,0,0.4123
ASSET000662,ORG0005,server_on_premises,low,public_cloud_azure,freebsd,0.6724,0.5328,39.6,90,270,540,0,0.41
ASSET000663,ORG0005,iot_firmware_device,high,saas_dependent,macos,0.8405,0.4514,35.0,30,90,180,1,0.2156
ASSET000664,ORG0005,database_server,low,saas_dependent,linux,0.5233,0.5419,63.6,90,270,540,1,0.4639
ASSET000665,ORG0005,web_application,high,public_cloud_gcp,freebsd,0.7034,0.4798,112.7,30,90,180,0,0.365
ASSET000666,ORG0005,database_server,critical,hybrid_cloud,windows,0.9297,0.6322,29.0,7,21,42,1,0.5038
ASSET000667,ORG0005,web_application,low,public_cloud_aws,macos,0.5705,0.633,45.2,90,270,540,1,0.4312
ASSET000668,ORG0005,saas_integration,medium,public_cloud_gcp,freebsd,0.6485,0.6151,67.3,60,180,360,0,0.5796
ASSET000669,ORG0005,network_service,critical,ot_ics_network,macos,0.8068,0.5028,26.2,7,21,42,1,0.4577
ASSET000670,ORG0005,api_gateway,low,public_cloud_aws,freebsd,0.5807,0.513,78.6,90,270,540,0,0.4992
ASSET000671,ORG0005,cloud_vm,critical,on_premises_datacenter,android_iot,0.8252,0.5171,31.8,7,21,42,1,0.5874
ASSET000672,ORG0005,supply_chain_dependency,low,ot_ics_network,windows,0.5854,0.506,79.3,90,270,540,0,0.3226
ASSET000673,ORG0005,cloud_vm,high,edge_iot_fleet,windows,0.786,0.4395,63.7,30,90,180,1,0.4992
ASSET000674,ORG0005,saas_integration,medium,edge_iot_fleet,windows,0.6768,0.5053,33.2,60,180,360,0,0.4081
ASSET000675,ORG0005,supply_chain_dependency,low,public_cloud_aws,windows,0.585,0.5041,94.1,90,270,540,1,0.4415
ASSET000676,ORG0005,endpoint_workstation,medium,saas_dependent,android_iot,0.623,0.5837,83.7,60,180,360,1,0.4622
ASSET000677,ORG0005,cloud_vm,low,saas_dependent,android_iot,0.6168,0.5559,111.0,90,270,540,0,0.1904
ASSET000678,ORG0005,iot_firmware_device,medium,public_cloud_gcp,embedded_rtos,0.7188,0.3929,86.6,60,180,360,0,0.3659
ASSET000679,ORG0005,database_server,medium,edge_iot_fleet,macos,0.6698,0.488,78.0,60,180,360,1,0.56
ASSET000680,ORG0005,database_server,low,public_cloud_gcp,android_iot,0.5775,0.4511,97.1,90,270,540,1,0.3038
ASSET000681,ORG0005,web_application,low,on_premises_datacenter,freebsd,0.6026,0.5503,81.5,90,270,540,0,0.3797
ASSET000682,ORG0005,network_service,low,hybrid_cloud,freebsd,0.5649,0.4609,88.8,90,270,540,0,0.2788
ASSET000683,ORG0005,network_service,medium,edge_iot_fleet,android_iot,0.6737,0.4834,48.7,60,180,360,0,0.4459
ASSET000684,ORG0005,container_workload,medium,ot_ics_network,embedded_rtos,0.712,0.7272,48.7,60,180,360,1,0.4018
ASSET000685,ORG0005,supply_chain_dependency,medium,edge_iot_fleet,freebsd,0.6774,0.5557,77.4,60,180,360,0,0.4562
ASSET000686,ORG0005,saas_integration,critical,public_cloud_gcp,macos,0.852,0.4545,47.1,7,21,42,0,0.4109
ASSET000687,ORG0005,cloud_vm,medium,public_cloud_aws,freebsd,0.692,0.5211,66.3,60,180,360,0,0.2694
ASSET000688,ORG0005,iot_firmware_device,high,edge_iot_fleet,macos,0.7979,0.5182,39.9,30,90,180,1,0.3691
ASSET000689,ORG0005,network_service,high,on_premises_datacenter,android_iot,0.825,0.4653,47.9,30,90,180,0,0.239
ASSET000690,ORG0005,endpoint_workstation,critical,on_premises_datacenter,linux,0.8771,0.5739,45.7,7,21,42,0,0.5092
ASSET000691,ORG0005,container_workload,low,public_cloud_gcp,freebsd,0.5627,0.5403,73.3,90,270,540,1,0.5225
ASSET000692,ORG0005,network_service,critical,ot_ics_network,windows,0.853,0.5687,20.3,7,21,42,0,0.5318
ASSET000693,ORG0005,saas_integration,low,public_cloud_gcp,android_iot,0.5344,0.5934,76.2,90,270,540,0,0.2677
ASSET000694,ORG0005,ot_ics_controller,low,ot_ics_network,macos,0.5961,0.4731,91.3,90,270,540,0,0.1737
ASSET000695,ORG0005,server_on_premises,high,public_cloud_gcp,android_iot,0.7803,0.4717,90.1,30,90,180,0,0.2943
ASSET000696,ORG0005,supply_chain_dependency,high,public_cloud_azure,android_iot,0.7675,0.5975,39.4,30,90,180,0,0.511
ASSET000697,ORG0005,cloud_vm,medium,public_cloud_azure,embedded_rtos,0.6368,0.5699,49.6,60,180,360,0,0.5103
ASSET000698,ORG0005,endpoint_workstation,medium,public_cloud_gcp,macos,0.7452,0.5028,103.2,60,180,360,1,0.3783
ASSET000699,ORG0005,cloud_vm,medium,hybrid_cloud,android_iot,0.7107,0.518,56.7,60,180,360,0,0.3744
ASSET000700,ORG0005,database_server,medium,public_cloud_aws,android_iot,0.673,0.4937,27.0,60,180,360,0,0.4605
ASSET000701,ORG0005,container_workload,low,edge_iot_fleet,windows,0.6445,0.4782,47.3,90,270,540,0,0.4745
ASSET000702,ORG0005,database_server,medium,public_cloud_gcp,windows,0.6501,0.376,75.0,60,180,360,0,0.4139
ASSET000703,ORG0005,server_on_premises,high,on_premises_datacenter,freebsd,0.7697,0.6793,32.7,30,90,180,0,0.4415
ASSET000704,ORG0005,saas_integration,low,edge_iot_fleet,windows,0.5715,0.5696,65.5,90,270,540,1,0.588
ASSET000705,ORG0005,saas_integration,critical,on_premises_datacenter,windows,0.8579,0.4022,20.4,7,21,42,0,0.427
ASSET000706,ORG0005,cloud_vm,medium,public_cloud_azure,embedded_rtos,0.7446,0.5019,95.7,60,180,360,0,0.4662
ASSET000707,ORG0005,ot_ics_controller,low,ot_ics_network,android_iot,0.5711,0.477,69.4,90,270,540,0,0.5648
ASSET000708,ORG0005,supply_chain_dependency,low,edge_iot_fleet,android_iot,0.623,0.5036,73.7,90,270,540,0,0.3933
ASSET000709,ORG0005,supply_chain_dependency,low,edge_iot_fleet,embedded_rtos,0.5799,0.4491,83.3,90,270,540,1,0.5299
ASSET000710,ORG0005,api_gateway,medium,public_cloud_gcp,android_iot,0.6843,0.6979,44.2,60,180,360,0,0.1917
ASSET000711,ORG0005,cloud_vm,critical,public_cloud_gcp,linux,0.8439,0.4845,37.2,7,21,42,0,0.3245
ASSET000712,ORG0005,supply_chain_dependency,high,public_cloud_azure,freebsd,0.7777,0.5098,69.2,30,90,180,0,0.3851
ASSET000713,ORG0005,iot_firmware_device,low,public_cloud_aws,windows,0.6263,0.4849,73.5,90,270,540,1,0.301
ASSET000714,ORG0005,saas_integration,high,public_cloud_gcp,freebsd,0.7846,0.5976,90.3,30,90,180,0,0.5041
ASSET000715,ORG0005,ot_ics_controller,low,ot_ics_network,freebsd,0.6213,0.5204,64.9,90,270,540,1,0.5351
ASSET000716,ORG0005,saas_integration,high,public_cloud_azure,windows,0.7994,0.5413,33.8,30,90,180,0,0.2678
ASSET000717,ORG0005,container_workload,high,hybrid_cloud,embedded_rtos,0.789,0.5221,75.0,30,90,180,1,0.1349
ASSET000718,ORG0005,container_workload,low,on_premises_datacenter,embedded_rtos,0.5289,0.5173,83.2,90,270,540,0,0.1667
ASSET000719,ORG0005,saas_integration,high,saas_dependent,freebsd,0.7821,0.4963,38.1,30,90,180,1,0.5908
ASSET000720,ORG0005,container_workload,low,ot_ics_network,freebsd,0.5857,0.5477,90.1,90,270,540,0,0.4233
ASSET000721,ORG0005,ot_ics_controller,high,public_cloud_azure,embedded_rtos,0.7633,0.5581,100.7,30,90,180,0,0.4827
ASSET000722,ORG0005,cloud_vm,medium,saas_dependent,freebsd,0.7121,0.6228,50.2,60,180,360,1,0.4289
ASSET000723,ORG0005,supply_chain_dependency,high,public_cloud_gcp,macos,0.848,0.446,58.0,30,90,180,0,0.3796
ASSET000724,ORG0005,network_service,medium,on_premises_datacenter,macos,0.7017,0.5748,64.8,60,180,360,0,0.457
ASSET000725,ORG0005,iot_firmware_device,low,saas_dependent,macos,0.5533,0.4421,100.1,90,270,540,0,0.3948
ASSET000726,ORG0005,api_gateway,critical,saas_dependent,macos,0.8515,0.518,49.6,7,21,42,1,0.4261
ASSET000727,ORG0005,container_workload,low,on_premises_datacenter,windows,0.5404,0.5726,78.9,90,270,540,0,0.4285
ASSET000728,ORG0005,network_service,medium,hybrid_cloud,windows,0.6519,0.5288,77.9,60,180,360,1,0.3684
ASSET000729,ORG0005,web_application,medium,public_cloud_gcp,android_iot,0.7691,0.4597,45.6,60,180,360,0,0.4644
ASSET000730,ORG0005,endpoint_workstation,medium,edge_iot_fleet,macos,0.685,0.5795,62.5,60,180,360,1,0.527
ASSET000731,ORG0005,saas_integration,medium,ot_ics_network,embedded_rtos,0.6831,0.5182,81.6,60,180,360,1,0.5208
ASSET000732,ORG0005,server_on_premises,critical,public_cloud_azure,windows,0.8652,0.505,41.0,7,21,42,1,0.5338
ASSET000733,ORG0005,cloud_vm,medium,ot_ics_network,macos,0.5751,0.4166,45.6,60,180,360,1,0.2875
ASSET000734,ORG0005,ot_ics_controller,low,ot_ics_network,linux,0.5478,0.5435,116.5,90,270,540,0,0.5505
ASSET000735,ORG0005,web_application,low,public_cloud_aws,freebsd,0.6287,0.5422,275.1,90,270,540,1,0.4898
ASSET000736,ORG0005,database_server,low,ot_ics_network,macos,0.5493,0.5054,56.7,90,270,540,1,0.4149
ASSET000737,ORG0005,supply_chain_dependency,high,on_premises_datacenter,linux,0.7942,0.4824,75.3,30,90,180,0,0.3178
ASSET000738,ORG0005,ot_ics_controller,low,saas_dependent,windows,0.5589,0.5688,63.9,90,270,540,0,0.4387
ASSET000739,ORG0005,container_workload,critical,public_cloud_gcp,windows,0.8969,0.4958,57.7,7,21,42,1,0.5596
ASSET000740,ORG0005,web_application,medium,edge_iot_fleet,freebsd,0.702,0.4512,51.7,60,180,360,1,0.4922
ASSET000741,ORG0005,iot_firmware_device,medium,on_premises_datacenter,freebsd,0.6571,0.5219,46.6,60,180,360,0,0.4516
ASSET000742,ORG0005,supply_chain_dependency,high,hybrid_cloud,linux,0.7025,0.5637,64.9,30,90,180,1,0.4775
ASSET000743,ORG0005,web_application,low,hybrid_cloud,linux,0.5868,0.6078,92.1,90,270,540,1,0.2074
ASSET000744,ORG0005,ot_ics_controller,high,public_cloud_azure,android_iot,0.7462,0.5376,63.5,30,90,180,0,0.2594
ASSET000745,ORG0005,server_on_premises,low,edge_iot_fleet,freebsd,0.5697,0.4972,49.7,90,270,540,0,0.5702
ASSET000746,ORG0005,network_service,low,public_cloud_azure,embedded_rtos,0.5719,0.5182,96.7,90,270,540,0,0.2422
ASSET000747,ORG0005,saas_integration,critical,public_cloud_azure,linux,0.8394,0.52,43.7,7,21,42,0,0.5404
ASSET000748,ORG0005,api_gateway,low,saas_dependent,android_iot,0.6181,0.5633,45.6,90,270,540,0,0.5465
ASSET000749,ORG0005,web_application,low,edge_iot_fleet,android_iot,0.5403,0.4736,134.3,90,270,540,0,0.5553
ASSET000750,ORG0005,server_on_premises,low,hybrid_cloud,linux,0.5369,0.6249,62.6,90,270,540,0,0.4439
ASSET000751,ORG0005,container_workload,medium,hybrid_cloud,freebsd,0.6477,0.6011,54.8,60,180,360,0,0.2792
ASSET000752,ORG0005,container_workload,medium,ot_ics_network,android_iot,0.735,0.5847,70.4,60,180,360,0,0.58
ASSET000753,ORG0005,database_server,critical,hybrid_cloud,freebsd,0.8625,0.4851,22.6,7,21,42,0,0.3348
ASSET000754,ORG0005,saas_integration,medium,on_premises_datacenter,embedded_rtos,0.6886,0.5267,51.3,60,180,360,0,0.3637
ASSET000755,ORG0005,web_application,low,hybrid_cloud,macos,0.6001,0.5049,78.3,90,270,540,0,0.4186
ASSET000756,ORG0005,cloud_vm,critical,saas_dependent,windows,0.8002,0.4926,29.3,7,21,42,0,0.2973
ASSET000757,ORG0005,endpoint_workstation,low,hybrid_cloud,embedded_rtos,0.5707,0.5774,61.0,90,270,540,1,0.4788
ASSET000758,ORG0005,container_workload,critical,public_cloud_aws,macos,0.8105,0.445,17.6,7,21,42,1,0.196
ASSET000759,ORG0005,endpoint_workstation,low,public_cloud_gcp,macos,0.6701,0.5646,65.5,90,270,540,1,0.5052
ASSET000760,ORG0005,ot_ics_controller,medium,public_cloud_aws,freebsd,0.7646,0.4124,88.0,60,180,360,0,0.2994
ASSET000761,ORG0005,supply_chain_dependency,critical,public_cloud_azure,android_iot,0.852,0.5757,18.9,7,21,42,0,0.4451
ASSET000762,ORG0005,ot_ics_controller,low,hybrid_cloud,windows,0.5222,0.6063,38.3,90,270,540,0,0.4975
ASSET000763,ORG0005,ot_ics_controller,medium,public_cloud_gcp,windows,0.6335,0.3981,53.0,60,180,360,0,0.4393
ASSET000764,ORG0005,iot_firmware_device,low,public_cloud_gcp,embedded_rtos,0.5978,0.5342,151.6,90,270,540,1,0.2729
ASSET000765,ORG0005,saas_integration,medium,ot_ics_network,windows,0.6955,0.5424,53.8,60,180,360,1,0.3364
ASSET000766,ORG0005,ot_ics_controller,low,edge_iot_fleet,embedded_rtos,0.6856,0.491,45.2,90,270,540,0,0.3479
ASSET000767,ORG0005,ot_ics_controller,medium,edge_iot_fleet,android_iot,0.7438,0.5155,40.5,60,180,360,0,0.5743
ASSET000768,ORG0005,api_gateway,medium,edge_iot_fleet,windows,0.7011,0.4278,89.8,60,180,360,0,0.2247
ASSET000769,ORG0005,endpoint_workstation,high,hybrid_cloud,linux,0.7646,0.5744,55.0,30,90,180,0,0.2623
ASSET000770,ORG0005,web_application,high,public_cloud_azure,linux,0.7925,0.5621,56.5,30,90,180,1,0.4923
ASSET000771,ORG0005,web_application,medium,on_premises_datacenter,android_iot,0.6743,0.4055,85.1,60,180,360,0,0.5374
ASSET000772,ORG0005,supply_chain_dependency,low,public_cloud_azure,linux,0.5667,0.5629,131.0,90,270,540,0,0.3245
ASSET000773,ORG0005,iot_firmware_device,high,saas_dependent,embedded_rtos,0.8061,0.6062,64.5,30,90,180,0,0.4109
ASSET000774,ORG0005,endpoint_workstation,high,edge_iot_fleet,windows,0.7922,0.4467,66.4,30,90,180,1,0.5409
ASSET000775,ORG0005,api_gateway,medium,ot_ics_network,freebsd,0.6873,0.4579,47.9,60,180,360,0,0.3632
ASSET000776,ORG0005,supply_chain_dependency,low,on_premises_datacenter,macos,0.607,0.5704,60.8,90,270,540,0,0.4943
ASSET000777,ORG0005,supply_chain_dependency,high,on_premises_datacenter,linux,0.8378,0.4571,19.6,30,90,180,0,0.356
ASSET000778,ORG0005,cloud_vm,high,on_premises_datacenter,android_iot,0.751,0.4987,29.9,30,90,180,1,0.4287
ASSET000779,ORG0005,database_server,medium,public_cloud_azure,android_iot,0.7496,0.4819,42.5,60,180,360,1,0.1945
ASSET000780,ORG0005,web_application,medium,public_cloud_aws,windows,0.721,0.4719,102.7,60,180,360,1,0.4121
ASSET000781,ORG0005,container_workload,high,hybrid_cloud,windows,0.7795,0.4524,60.7,30,90,180,1,0.3807
ASSET000782,ORG0005,iot_firmware_device,high,public_cloud_azure,android_iot,0.7436,0.5506,40.3,30,90,180,1,0.407
ASSET000783,ORG0005,container_workload,medium,public_cloud_azure,macos,0.6939,0.5942,41.0,60,180,360,0,0.3671
ASSET000784,ORG0005,cloud_vm,medium,edge_iot_fleet,macos,0.6679,0.4553,29.6,60,180,360,0,0.2649
ASSET000785,ORG0005,api_gateway,medium,public_cloud_aws,embedded_rtos,0.6524,0.6351,67.8,60,180,360,0,0.4192
ASSET000786,ORG0005,endpoint_workstation,medium,public_cloud_azure,linux,0.6435,0.5394,67.5,60,180,360,0,0.2983
ASSET000787,ORG0005,saas_integration,low,edge_iot_fleet,android_iot,0.5427,0.5342,50.8,90,270,540,0,0.5145
ASSET000788,ORG0005,database_server,critical,public_cloud_aws,freebsd,0.8891,0.4636,70.2,7,21,42,0,0.516
ASSET000789,ORG0005,server_on_premises,low,public_cloud_gcp,embedded_rtos,0.5835,0.4893,71.8,90,270,540,0,0.4357
ASSET000790,ORG0005,database_server,high,public_cloud_aws,macos,0.7923,0.5543,53.9,30,90,180,0,0.2817
ASSET000791,ORG0005,network_service,low,public_cloud_azure,embedded_rtos,0.6317,0.4614,130.4,90,270,540,0,0.4555
ASSET000792,ORG0005,saas_integration,high,public_cloud_aws,android_iot,0.7921,0.4852,54.2,30,90,180,0,0.4226
ASSET000793,ORG0005,web_application,medium,public_cloud_gcp,freebsd,0.7219,0.5091,87.5,60,180,360,0,0.2574
ASSET000794,ORG0005,iot_firmware_device,high,on_premises_datacenter,windows,0.8006,0.5723,67.4,30,90,180,1,0.4884
ASSET000795,ORG0005,server_on_premises,low,saas_dependent,linux,0.5717,0.5577,53.2,90,270,540,0,0.5039
ASSET000796,ORG0005,saas_integration,low,public_cloud_aws,linux,0.6238,0.5032,94.1,90,270,540,0,0.3443
ASSET000797,ORG0005,iot_firmware_device,medium,saas_dependent,windows,0.7001,0.452,68.3,60,180,360,0,0.5331
ASSET000798,ORG0005,server_on_premises,medium,public_cloud_azure,embedded_rtos,0.6895,0.5714,50.0,60,180,360,0,0.3019
ASSET000799,ORG0005,ot_ics_controller,low,ot_ics_network,macos,0.6692,0.4583,41.5,90,270,540,0,0.4138
ASSET000800,ORG0005,web_application,medium,edge_iot_fleet,android_iot,0.6718,0.4561,40.2,60,180,360,0,0.4514
ASSET000801,ORG0006,api_gateway,high,ot_ics_network,macos,0.845,0.3753,74.8,30,90,180,1,0.5581
ASSET000802,ORG0006,server_on_premises,high,saas_dependent,freebsd,0.752,0.4722,54.3,30,90,180,0,0.3925
ASSET000803,ORG0006,server_on_premises,medium,public_cloud_gcp,linux,0.6863,0.4781,41.0,60,180,360,1,0.5169
ASSET000804,ORG0006,network_service,medium,edge_iot_fleet,embedded_rtos,0.7032,0.6003,34.3,60,180,360,1,0.5361
ASSET000805,ORG0006,web_application,low,public_cloud_azure,android_iot,0.6018,0.4377,83.3,90,270,540,1,0.4131
ASSET000806,ORG0006,iot_firmware_device,medium,hybrid_cloud,freebsd,0.6817,0.5669,71.4,60,180,360,1,0.5203
ASSET000807,ORG0006,endpoint_workstation,high,public_cloud_gcp,linux,0.7846,0.5317,63.0,30,90,180,1,0.2825
ASSET000808,ORG0006,endpoint_workstation,medium,public_cloud_azure,linux,0.6884,0.5784,77.0,60,180,360,1,0.4423
ASSET000809,ORG0006,endpoint_workstation,medium,on_premises_datacenter,windows,0.7387,0.4471,98.7,60,180,360,1,0.4439
ASSET000810,ORG0006,server_on_premises,medium,public_cloud_azure,linux,0.6648,0.5703,74.0,60,180,360,1,0.3514
ASSET000811,ORG0006,cloud_vm,high,edge_iot_fleet,android_iot,0.7193,0.5151,32.0,30,90,180,0,0.3374
ASSET000812,ORG0006,web_application,high,public_cloud_aws,linux,0.785,0.4756,116.8,30,90,180,0,0.5803
ASSET000813,ORG0006,container_workload,high,hybrid_cloud,freebsd,0.8187,0.518,39.1,30,90,180,1,0.4285
ASSET000814,ORG0006,network_service,low,public_cloud_gcp,macos,0.5985,0.5338,137.7,90,270,540,1,0.2943
ASSET000815,ORG0006,network_service,low,public_cloud_azure,embedded_rtos,0.5259,0.4195,68.6,90,270,540,1,0.5423
ASSET000816,ORG0006,network_service,low,public_cloud_aws,windows,0.6081,0.4693,90.5,90,270,540,0,0.2354
ASSET000817,ORG0006,api_gateway,low,edge_iot_fleet,freebsd,0.558,0.5994,96.9,90,270,540,1,0.426
ASSET000818,ORG0006,cloud_vm,high,saas_dependent,macos,0.75,0.5124,72.0,30,90,180,0,0.3338
ASSET000819,ORG0006,database_server,medium,saas_dependent,linux,0.6659,0.4601,62.1,60,180,360,0,0.4053
ASSET000820,ORG0006,database_server,low,hybrid_cloud,macos,0.5569,0.4442,120.4,90,270,540,0,0.5056
ASSET000821,ORG0006,network_service,low,public_cloud_gcp,embedded_rtos,0.5723,0.5138,34.7,90,270,540,0,0.4467
ASSET000822,ORG0006,web_application,medium,on_premises_datacenter,windows,0.6865,0.3982,38.4,60,180,360,1,0.5869
ASSET000823,ORG0006,api_gateway,high,saas_dependent,freebsd,0.8013,0.4634,47.7,30,90,180,1,0.2737
ASSET000824,ORG0006,api_gateway,low,hybrid_cloud,windows,0.577,0.5388,74.1,90,270,540,1,0.3168
ASSET000825,ORG0006,supply_chain_dependency,medium,saas_dependent,macos,0.6472,0.4856,58.2,60,180,360,0,0.5456
ASSET000826,ORG0006,supply_chain_dependency,medium,on_premises_datacenter,macos,0.6859,0.5098,35.8,60,180,360,0,0.4888
ASSET000827,ORG0006,ot_ics_controller,medium,public_cloud_gcp,embedded_rtos,0.6925,0.5904,59.8,60,180,360,0,0.4212
ASSET000828,ORG0006,network_service,medium,public_cloud_aws,linux,0.7204,0.462,49.3,60,180,360,0,0.5884
ASSET000829,ORG0006,server_on_premises,medium,hybrid_cloud,freebsd,0.744,0.5003,35.5,60,180,360,1,0.521
ASSET000830,ORG0006,ot_ics_controller,low,public_cloud_azure,embedded_rtos,0.5828,0.4843,73.9,90,270,540,0,0.3718
ASSET000831,ORG0006,web_application,medium,saas_dependent,macos,0.6885,0.5514,17.6,60,180,360,0,0.5036
ASSET000832,ORG0006,web_application,medium,ot_ics_network,linux,0.7131,0.5155,32.9,60,180,360,0,0.3322
ASSET000833,ORG0006,iot_firmware_device,medium,hybrid_cloud,embedded_rtos,0.6788,0.4885,49.0,60,180,360,1,0.3183
ASSET000834,ORG0006,server_on_premises,medium,on_premises_datacenter,freebsd,0.6856,0.4335,71.2,60,180,360,1,0.5157
ASSET000835,ORG0006,supply_chain_dependency,high,hybrid_cloud,windows,0.7767,0.577,88.4,30,90,180,0,0.4116
ASSET000836,ORG0006,api_gateway,medium,saas_dependent,macos,0.6723,0.5296,63.0,60,180,360,0,0.3696
ASSET000837,ORG0006,ot_ics_controller,low,public_cloud_azure,windows,0.5652,0.5232,60.9,90,270,540,0,0.3223
ASSET000838,ORG0006,supply_chain_dependency,low,public_cloud_azure,linux,0.519,0.4147,77.0,90,270,540,0,0.2381
ASSET000839,ORG0006,ot_ics_controller,medium,public_cloud_gcp,macos,0.7198,0.4644,42.7,60,180,360,0,0.2728
ASSET000840,ORG0006,endpoint_workstation,medium,public_cloud_azure,android_iot,0.7415,0.4652,56.2,60,180,360,0,0.4191
ASSET000841,ORG0006,database_server,medium,public_cloud_gcp,android_iot,0.6162,0.4056,55.5,60,180,360,0,0.4272
ASSET000842,ORG0006,iot_firmware_device,low,edge_iot_fleet,windows,0.588,0.4869,41.0,90,270,540,1,0.5725
ASSET000843,ORG0006,network_service,low,hybrid_cloud,linux,0.6195,0.5892,103.9,90,270,540,1,0.5054
ASSET000844,ORG0006,container_workload,low,on_premises_datacenter,android_iot,0.541,0.6062,158.7,90,270,540,0,0.3467
ASSET000845,ORG0006,ot_ics_controller,high,edge_iot_fleet,macos,0.7229,0.501,45.9,30,90,180,0,0.3321
ASSET000846,ORG0006,container_workload,medium,on_premises_datacenter,android_iot,0.7132,0.5186,34.9,60,180,360,1,0.4506
ASSET000847,ORG0006,saas_integration,low,public_cloud_gcp,linux,0.5108,0.4815,105.9,90,270,540,1,0.5288
ASSET000848,ORG0006,server_on_premises,critical,public_cloud_aws,android_iot,0.859,0.3607,28.6,7,21,42,0,0.4619
ASSET000849,ORG0006,server_on_premises,medium,hybrid_cloud,macos,0.638,0.4805,127.1,60,180,360,0,0.521
ASSET000850,ORG0006,ot_ics_controller,high,public_cloud_gcp,linux,0.7526,0.4751,49.1,30,90,180,0,0.5872
ASSET000851,ORG0006,web_application,high,on_premises_datacenter,embedded_rtos,0.7531,0.4584,106.1,30,90,180,0,0.2798
ASSET000852,ORG0006,server_on_premises,medium,on_premises_datacenter,macos,0.6781,0.4717,93.3,60,180,360,0,0.4002
ASSET000853,ORG0006,iot_firmware_device,medium,public_cloud_azure,windows,0.6242,0.6329,80.8,60,180,360,0,0.1841
ASSET000854,ORG0006,database_server,high,edge_iot_fleet,embedded_rtos,0.7112,0.5532,63.7,30,90,180,0,0.2205
ASSET000855,ORG0006,cloud_vm,low,public_cloud_aws,windows,0.6068,0.5431,62.5,90,270,540,0,0.3738
ASSET000856,ORG0006,ot_ics_controller,medium,edge_iot_fleet,linux,0.6455,0.4213,97.5,60,180,360,0,0.2959
ASSET000857,ORG0006,endpoint_workstation,medium,on_premises_datacenter,linux,0.7489,0.5737,46.5,60,180,360,0,0.5662
ASSET000858,ORG0006,cloud_vm,high,on_premises_datacenter,windows,0.8076,0.4253,48.5,30,90,180,0,0.5836
ASSET000859,ORG0006,cloud_vm,low,ot_ics_network,macos,0.6464,0.4132,49.6,90,270,540,0,0.4951
ASSET000860,ORG0006,web_application,critical,public_cloud_gcp,macos,0.7986,0.4362,27.3,7,21,42,0,0.4875
ASSET000861,ORG0006,supply_chain_dependency,medium,public_cloud_gcp,embedded_rtos,0.7366,0.5283,74.5,60,180,360,1,0.4633
ASSET000862,ORG0006,server_on_premises,low,public_cloud_aws,macos,0.6069,0.5068,79.6,90,270,540,0,0.1781
ASSET000863,ORG0006,container_workload,high,on_premises_datacenter,linux,0.7924,0.67,32.7,30,90,180,0,0.5324
ASSET000864,ORG0006,web_application,high,public_cloud_azure,linux,0.7569,0.4944,55.3,30,90,180,0,0.4696
ASSET000865,ORG0006,database_server,medium,on_premises_datacenter,windows,0.6563,0.5379,98.0,60,180,360,0,0.4343
ASSET000866,ORG0006,server_on_premises,medium,public_cloud_azure,macos,0.74,0.4201,35.8,60,180,360,0,0.2778
ASSET000867,ORG0006,cloud_vm,medium,public_cloud_gcp,windows,0.702,0.7125,64.1,60,180,360,0,0.3841
ASSET000868,ORG0006,api_gateway,critical,ot_ics_network,android_iot,0.8386,0.4622,52.5,7,21,42,0,0.351
ASSET000869,ORG0006,endpoint_workstation,critical,on_premises_datacenter,macos,0.8071,0.4062,27.7,7,21,42,0,0.4243
ASSET000870,ORG0006,server_on_premises,low,edge_iot_fleet,macos,0.5437,0.4768,65.7,90,270,540,0,0.3794
ASSET000871,ORG0006,network_service,high,ot_ics_network,embedded_rtos,0.7248,0.4121,80.4,30,90,180,1,0.5397
ASSET000872,ORG0006,network_service,low,ot_ics_network,embedded_rtos,0.5406,0.5338,43.9,90,270,540,0,0.3855
ASSET000873,ORG0006,network_service,high,public_cloud_aws,macos,0.7609,0.535,60.1,30,90,180,0,0.5578
ASSET000874,ORG0006,network_service,medium,edge_iot_fleet,macos,0.6593,0.3881,56.4,60,180,360,0,0.4084
ASSET000875,ORG0006,ot_ics_controller,medium,saas_dependent,macos,0.7107,0.4789,37.4,60,180,360,0,0.3637
ASSET000876,ORG0006,endpoint_workstation,high,ot_ics_network,freebsd,0.7878,0.3988,54.2,30,90,180,1,0.507
ASSET000877,ORG0006,iot_firmware_device,low,public_cloud_gcp,linux,0.5899,0.5317,126.8,90,270,540,0,0.2924
ASSET000878,ORG0006,database_server,low,public_cloud_gcp,embedded_rtos,0.6375,0.4888,110.9,90,270,540,0,0.475
ASSET000879,ORG0006,web_application,high,public_cloud_azure,freebsd,0.7824,0.6478,25.5,30,90,180,0,0.4416
ASSET000880,ORG0006,iot_firmware_device,medium,hybrid_cloud,freebsd,0.6496,0.4599,45.3,60,180,360,0,0.4716
ASSET000881,ORG0006,server_on_premises,low,public_cloud_gcp,freebsd,0.5153,0.4885,52.2,90,270,540,0,0.5599
ASSET000882,ORG0006,container_workload,critical,ot_ics_network,embedded_rtos,0.8056,0.4892,26.3,7,21,42,1,0.5113
ASSET000883,ORG0006,endpoint_workstation,medium,ot_ics_network,macos,0.7368,0.4209,61.7,60,180,360,1,0.4595
ASSET000884,ORG0006,api_gateway,medium,public_cloud_gcp,windows,0.6525,0.4334,124.7,60,180,360,0,0.2737
ASSET000885,ORG0006,cloud_vm,low,public_cloud_aws,windows,0.5644,0.5493,103.2,90,270,540,0,0.3699
ASSET000886,ORG0006,supply_chain_dependency,low,public_cloud_azure,android_iot,0.6229,0.4968,100.2,90,270,540,1,0.5666
ASSET000887,ORG0006,iot_firmware_device,low,ot_ics_network,android_iot,0.5422,0.4096,199.9,90,270,540,1,0.3363
ASSET000888,ORG0006,network_service,critical,public_cloud_gcp,macos,0.8418,0.4383,30.5,7,21,42,0,0.4855
ASSET000889,ORG0006,container_workload,medium,edge_iot_fleet,linux,0.6345,0.496,59.5,60,180,360,1,0.5018
ASSET000890,ORG0006,api_gateway,low,public_cloud_gcp,embedded_rtos,0.5436,0.5062,87.9,90,270,540,0,0.5574
ASSET000891,ORG0006,network_service,low,public_cloud_aws,linux,0.5333,0.4995,72.6,90,270,540,0,0.4917
ASSET000892,ORG0006,database_server,low,saas_dependent,embedded_rtos,0.5389,0.5108,61.7,90,270,540,0,0.2623
ASSET000893,ORG0006,server_on_premises,medium,public_cloud_azure,linux,0.6286,0.3939,65.9,60,180,360,0,0.242
ASSET000894,ORG0006,supply_chain_dependency,low,on_premises_datacenter,embedded_rtos,0.5772,0.4573,54.3,90,270,540,0,0.5579
ASSET000895,ORG0006,ot_ics_controller,medium,hybrid_cloud,linux,0.6588,0.4936,50.0,60,180,360,0,0.4526
ASSET000896,ORG0006,web_application,low,edge_iot_fleet,embedded_rtos,0.5769,0.4834,89.7,90,270,540,0,0.3561
ASSET000897,ORG0006,network_service,high,public_cloud_gcp,embedded_rtos,0.6903,0.4666,86.2,30,90,180,1,0.1847
ASSET000898,ORG0006,network_service,medium,on_premises_datacenter,windows,0.7203,0.5172,61.5,60,180,360,0,0.4539
ASSET000899,ORG0006,database_server,medium,public_cloud_aws,freebsd,0.714,0.5602,48.7,60,180,360,0,0.3961
ASSET000900,ORG0006,saas_integration,medium,public_cloud_gcp,android_iot,0.6905,0.4546,107.9,60,180,360,0,0.5625
ASSET000901,ORG0006,network_service,low,public_cloud_gcp,android_iot,0.4987,0.4266,51.3,90,270,540,0,0.2719
ASSET000902,ORG0006,saas_integration,high,public_cloud_azure,embedded_rtos,0.733,0.6287,35.8,30,90,180,0,0.3332
ASSET000903,ORG0006,endpoint_workstation,low,hybrid_cloud,android_iot,0.5407,0.6274,50.4,90,270,540,0,0.5274
ASSET000904,ORG0006,api_gateway,high,public_cloud_aws,linux,0.8009,0.4476,56.6,30,90,180,0,0.387
ASSET000905,ORG0006,ot_ics_controller,low,public_cloud_aws,macos,0.5922,0.5848,90.2,90,270,540,0,0.4279
ASSET000906,ORG0006,api_gateway,low,on_premises_datacenter,macos,0.5979,0.5849,88.2,90,270,540,0,0.4131
ASSET000907,ORG0006,ot_ics_controller,high,hybrid_cloud,android_iot,0.7656,0.6166,33.0,30,90,180,0,0.4819
ASSET000908,ORG0006,web_application,medium,public_cloud_aws,macos,0.6331,0.4903,43.8,60,180,360,0,0.3122
ASSET000909,ORG0006,server_on_premises,critical,hybrid_cloud,macos,0.805,0.4491,16.6,7,21,42,0,0.3748
ASSET000910,ORG0006,database_server,low,hybrid_cloud,windows,0.6451,0.4914,47.0,90,270,540,0,0.5879
ASSET000911,ORG0006,web_application,medium,hybrid_cloud,windows,0.6839,0.4956,49.7,60,180,360,0,0.548
ASSET000912,ORG0006,server_on_premises,medium,public_cloud_azure,windows,0.6892,0.5124,71.9,60,180,360,0,0.4168
ASSET000913,ORG0006,supply_chain_dependency,low,edge_iot_fleet,macos,0.5166,0.5182,69.8,90,270,540,0,0.5165
ASSET000914,ORG0006,api_gateway,low,saas_dependent,linux,0.6651,0.545,58.8,90,270,540,0,0.4925
ASSET000915,ORG0006,cloud_vm,medium,ot_ics_network,macos,0.6667,0.4573,47.7,60,180,360,0,0.2601
ASSET000916,ORG0006,network_service,low,public_cloud_aws,freebsd,0.4662,0.4814,46.5,90,270,540,0,0.3146
ASSET000917,ORG0006,saas_integration,low,edge_iot_fleet,embedded_rtos,0.6079,0.4915,100.3,90,270,540,1,0.2706
ASSET000918,ORG0006,endpoint_workstation,medium,public_cloud_aws,linux,0.6435,0.5864,57.0,60,180,360,0,0.4889
ASSET000919,ORG0006,database_server,medium,public_cloud_aws,macos,0.657,0.4666,106.4,60,180,360,1,0.478
ASSET000920,ORG0006,cloud_vm,medium,edge_iot_fleet,android_iot,0.7115,0.5038,81.7,60,180,360,0,0.3451
ASSET000921,ORG0006,endpoint_workstation,high,hybrid_cloud,freebsd,0.72,0.4962,111.8,30,90,180,0,0.3317
ASSET000922,ORG0006,saas_integration,medium,edge_iot_fleet,windows,0.6631,0.5248,80.7,60,180,360,1,0.3849
ASSET000923,ORG0006,ot_ics_controller,low,public_cloud_aws,freebsd,0.6384,0.5503,55.3,90,270,540,0,0.3768
ASSET000924,ORG0006,network_service,low,public_cloud_azure,android_iot,0.5566,0.507,41.9,90,270,540,0,0.2972
ASSET000925,ORG0006,cloud_vm,high,public_cloud_aws,linux,0.8378,0.6034,41.6,30,90,180,1,0.2931
ASSET000926,ORG0006,database_server,critical,saas_dependent,linux,0.8486,0.504,25.1,7,21,42,0,0.4443
ASSET000927,ORG0006,cloud_vm,low,ot_ics_network,windows,0.5709,0.4044,104.5,90,270,540,1,0.5614
ASSET000928,ORG0006,supply_chain_dependency,low,saas_dependent,android_iot,0.572,0.5009,33.8,90,270,540,0,0.5785
ASSET000929,ORG0006,database_server,medium,edge_iot_fleet,macos,0.7816,0.5436,53.9,60,180,360,0,0.4088
ASSET000930,ORG0006,endpoint_workstation,high,saas_dependent,linux,0.7718,0.5419,38.4,30,90,180,0,0.4177
ASSET000931,ORG0006,ot_ics_controller,high,edge_iot_fleet,freebsd,0.799,0.4933,52.5,30,90,180,0,0.4718
ASSET000932,ORG0006,endpoint_workstation,high,public_cloud_gcp,android_iot,0.7516,0.555,129.0,30,90,180,0,0.1788
ASSET000933,ORG0006,database_server,critical,public_cloud_azure,embedded_rtos,0.7838,0.4983,70.7,7,21,42,1,0.5579
ASSET000934,ORG0006,network_service,medium,edge_iot_fleet,android_iot,0.7213,0.3935,51.5,60,180,360,0,0.2629
ASSET000935,ORG0006,cloud_vm,medium,edge_iot_fleet,macos,0.6531,0.6083,15.9,60,180,360,0,0.4709
ASSET000936,ORG0006,ot_ics_controller,medium,public_cloud_azure,linux,0.6735,0.4332,90.9,60,180,360,0,0.3884
ASSET000937,ORG0006,container_workload,low,on_premises_datacenter,freebsd,0.5959,0.4375,86.5,90,270,540,0,0.2728
ASSET000938,ORG0006,server_on_premises,low,public_cloud_aws,android_iot,0.5789,0.5203,36.7,90,270,540,0,0.4388
ASSET000939,ORG0006,ot_ics_controller,critical,hybrid_cloud,linux,0.8666,0.5075,16.1,7,21,42,0,0.4563
ASSET000940,ORG0006,network_service,medium,public_cloud_aws,android_iot,0.6943,0.56,57.7,60,180,360,0,0.4398
ASSET000941,ORG0006,server_on_premises,high,public_cloud_azure,android_iot,0.7301,0.4899,49.0,30,90,180,1,0.4627
ASSET000942,ORG0006,supply_chain_dependency,critical,saas_dependent,freebsd,0.8278,0.4209,29.3,7,21,42,0,0.4292
ASSET000943,ORG0006,network_service,medium,hybrid_cloud,windows,0.6758,0.5399,74.6,60,180,360,0,0.3431
ASSET000944,ORG0006,network_service,medium,public_cloud_gcp,freebsd,0.6992,0.5053,48.5,60,180,360,1,0.3358
ASSET000945,ORG0006,endpoint_workstation,low,public_cloud_azure,embedded_rtos,0.4955,0.5154,34.6,90,270,540,1,0.3611
ASSET000946,ORG0006,saas_integration,high,public_cloud_azure,android_iot,0.7823,0.4591,34.1,30,90,180,0,0.3884
ASSET000947,ORG0006,cloud_vm,medium,public_cloud_aws,macos,0.6597,0.5204,98.6,60,180,360,0,0.5394
ASSET000948,ORG0006,server_on_premises,low,public_cloud_gcp,windows,0.546,0.5233,74.9,90,270,540,1,0.2666
ASSET000949,ORG0006,database_server,high,on_premises_datacenter,macos,0.7875,0.5709,30.8,30,90,180,0,0.4099
ASSET000950,ORG0006,container_workload,medium,edge_iot_fleet,linux,0.703,0.5212,45.4,60,180,360,0,0.5636
ASSET000951,ORG0006,network_service,medium,public_cloud_aws,macos,0.7201,0.5405,58.2,60,180,360,0,0.3589
ASSET000952,ORG0006,cloud_vm,critical,on_premises_datacenter,linux,0.8528,0.5342,19.0,7,21,42,0,0.3562
ASSET000953,ORG0006,endpoint_workstation,low,hybrid_cloud,freebsd,0.5672,0.5233,71.2,90,270,540,0,0.1585
ASSET000954,ORG0006,saas_integration,medium,ot_ics_network,linux,0.7546,0.34,58.0,60,180,360,1,0.515
ASSET000955,ORG0006,cloud_vm,high,edge_iot_fleet,macos,0.794,0.4919,79.3,30,90,180,0,0.3028
ASSET000956,ORG0006,network_service,low,on_premises_datacenter,embedded_rtos,0.5658,0.4609,125.8,90,270,540,1,0.4667
ASSET000957,ORG0006,web_application,low,ot_ics_network,embedded_rtos,0.5831,0.554,61.2,90,270,540,0,0.4236
ASSET000958,ORG0006,web_application,low,public_cloud_gcp,linux,0.5744,0.5026,50.9,90,270,540,1,0.4658
ASSET000959,ORG0006,web_application,medium,hybrid_cloud,embedded_rtos,0.7439,0.5103,51.5,60,180,360,1,0.2138
ASSET000960,ORG0006,cloud_vm,critical,saas_dependent,linux,0.8509,0.4639,40.7,7,21,42,0,0.4832
ASSET000961,ORG0007,network_service,medium,on_premises_datacenter,linux,0.693,0.4879,36.8,60,180,360,0,0.4784
ASSET000962,ORG0007,endpoint_workstation,low,public_cloud_aws,macos,0.6191,0.5438,115.4,90,270,540,1,0.4475
ASSET000963,ORG0007,saas_integration,low,edge_iot_fleet,embedded_rtos,0.5103,0.4572,46.9,90,270,540,0,0.386
ASSET000964,ORG0007,endpoint_workstation,high,saas_dependent,linux,0.7228,0.4994,67.6,30,90,180,0,0.3335
ASSET000965,ORG0007,cloud_vm,medium,saas_dependent,macos,0.6745,0.5136,65.1,60,180,360,1,0.2852
ASSET000966,ORG0007,ot_ics_controller,critical,hybrid_cloud,embedded_rtos,0.8287,0.5762,16.7,7,21,42,0,0.2441
ASSET000967,ORG0007,cloud_vm,high,hybrid_cloud,macos,0.7859,0.4385,41.5,30,90,180,0,0.4242
ASSET000968,ORG0007,cloud_vm,high,on_premises_datacenter,windows,0.7666,0.3655,67.3,30,90,180,0,0.3669
ASSET000969,ORG0007,ot_ics_controller,low,public_cloud_aws,windows,0.5289,0.4165,52.0,90,270,540,0,0.2839
ASSET000970,ORG0007,database_server,high,edge_iot_fleet,freebsd,0.7868,0.4206,85.5,30,90,180,0,0.3047
ASSET000971,ORG0007,web_application,low,edge_iot_fleet,embedded_rtos,0.4838,0.4,86.4,90,270,540,1,0.4211
ASSET000972,ORG0007,endpoint_workstation,medium,public_cloud_azure,freebsd,0.6734,0.4421,67.7,60,180,360,1,0.1877
ASSET000973,ORG0007,iot_firmware_device,medium,ot_ics_network,android_iot,0.7104,0.4816,39.0,60,180,360,0,0.4645
ASSET000974,ORG0007,supply_chain_dependency,medium,edge_iot_fleet,linux,0.6305,0.5183,54.1,60,180,360,0,0.3503
ASSET000975,ORG0007,saas_integration,critical,public_cloud_gcp,windows,0.8152,0.3424,34.0,7,21,42,0,0.4887
ASSET000976,ORG0007,server_on_premises,medium,edge_iot_fleet,embedded_rtos,0.7045,0.4394,166.2,60,180,360,1,0.2919
ASSET000977,ORG0007,database_server,low,public_cloud_aws,embedded_rtos,0.5924,0.5003,115.8,90,270,540,0,0.4308
ASSET000978,ORG0007,supply_chain_dependency,high,ot_ics_network,linux,0.745,0.4205,27.1,30,90,180,1,0.4808
ASSET000979,ORG0007,iot_firmware_device,low,saas_dependent,android_iot,0.4841,0.4699,52.8,90,270,540,0,0.2774
ASSET000980,ORG0007,iot_firmware_device,low,on_premises_datacenter,macos,0.5072,0.4703,106.6,90,270,540,0,0.1746
ASSET000981,ORG0007,container_workload,low,public_cloud_azure,macos,0.5787,0.5411,74.3,90,270,540,0,0.4478
ASSET000982,ORG0007,container_workload,critical,public_cloud_aws,linux,0.7686,0.4639,51.6,7,21,42,0,0.4556
ASSET000983,ORG0007,endpoint_workstation,high,ot_ics_network,freebsd,0.7249,0.5168,60.7,30,90,180,1,0.2774
ASSET000984,ORG0007,ot_ics_controller,high,public_cloud_aws,linux,0.7801,0.4322,46.5,30,90,180,0,0.4017
ASSET000985,ORG0007,server_on_premises,critical,public_cloud_gcp,macos,0.8652,0.4544,58.0,7,21,42,0,0.4181
ASSET000986,ORG0007,supply_chain_dependency,high,ot_ics_network,embedded_rtos,0.7392,0.4501,55.6,30,90,180,1,0.347
ASSET000987,ORG0007,cloud_vm,medium,edge_iot_fleet,embedded_rtos,0.6955,0.4542,77.5,60,180,360,1,0.4937
ASSET000988,ORG0007,supply_chain_dependency,low,ot_ics_network,android_iot,0.5511,0.4977,54.7,90,270,540,0,0.2528
ASSET000989,ORG0007,container_workload,high,public_cloud_aws,android_iot,0.7409,0.4665,87.1,30,90,180,1,0.3577
ASSET000990,ORG0007,iot_firmware_device,medium,public_cloud_gcp,embedded_rtos,0.6907,0.5185,41.9,60,180,360,0,0.358
ASSET000991,ORG0007,api_gateway,medium,public_cloud_azure,macos,0.7327,0.4399,46.5,60,180,360,0,0.3409
ASSET000992,ORG0007,iot_firmware_device,medium,public_cloud_azure,embedded_rtos,0.6002,0.359,55.5,60,180,360,0,0.3693
ASSET000993,ORG0007,server_on_premises,medium,saas_dependent,macos,0.637,0.355,58.6,60,180,360,1,0.4454
ASSET000994,ORG0007,database_server,medium,on_premises_datacenter,linux,0.639,0.4927,62.4,60,180,360,1,0.1633
ASSET000995,ORG0007,iot_firmware_device,high,public_cloud_gcp,android_iot,0.833,0.4351,53.7,30,90,180,1,0.5141
ASSET000996,ORG0007,container_workload,low,on_premises_datacenter,embedded_rtos,0.5798,0.4568,89.9,90,270,540,0,0.3837
ASSET000997,ORG0007,iot_firmware_device,medium,ot_ics_network,windows,0.6113,0.4525,85.1,60,180,360,0,0.2593
ASSET000998,ORG0007,server_on_premises,high,saas_dependent,windows,0.8026,0.5124,20.1,30,90,180,0,0.5196
ASSET000999,ORG0007,supply_chain_dependency,low,public_cloud_gcp,embedded_rtos,0.513,0.5304,122.4,90,270,540,1,0.2976
ASSET001000,ORG0007,server_on_premises,high,on_premises_datacenter,macos,0.682,0.4284,43.3,30,90,180,1,0.3985
ASSET001001,ORG0007,endpoint_workstation,medium,saas_dependent,freebsd,0.6997,0.4212,56.4,60,180,360,0,0.3147
ASSET001002,ORG0007,api_gateway,high,on_premises_datacenter,android_iot,0.7343,0.4542,62.3,30,90,180,0,0.3667
ASSET001003,ORG0007,container_workload,medium,ot_ics_network,windows,0.697,0.4873,68.9,60,180,360,0,0.4284
ASSET001004,ORG0007,database_server,low,on_premises_datacenter,windows,0.5046,0.4491,87.4,90,270,540,1,0.4108
ASSET001005,ORG0007,container_workload,high,public_cloud_gcp,embedded_rtos,0.7998,0.4755,32.5,30,90,180,0,0.4337
ASSET001006,ORG0007,web_application,low,edge_iot_fleet,freebsd,0.5506,0.4492,59.9,90,270,540,0,0.4585
ASSET001007,ORG0007,endpoint_workstation,low,public_cloud_aws,android_iot,0.6083,0.5342,54.8,90,270,540,0,0.3996
ASSET001008,ORG0007,saas_integration,high,public_cloud_azure,windows,0.7076,0.4866,33.6,30,90,180,0,0.3523
ASSET001009,ORG0007,endpoint_workstation,low,public_cloud_azure,android_iot,0.5175,0.4747,81.2,90,270,540,1,0.3324
ASSET001010,ORG0007,ot_ics_controller,critical,edge_iot_fleet,windows,0.8171,0.4153,33.3,7,21,42,0,0.3377
ASSET001011,ORG0007,supply_chain_dependency,medium,edge_iot_fleet,linux,0.6274,0.5125,76.3,60,180,360,1,0.2408
ASSET001012,ORG0007,network_service,low,on_premises_datacenter,windows,0.565,0.4355,107.5,90,270,540,1,0.1953
ASSET001013,ORG0007,ot_ics_controller,low,ot_ics_network,linux,0.5844,0.3985,43.2,90,270,540,0,0.473
ASSET001014,ORG0007,saas_integration,medium,public_cloud_aws,embedded_rtos,0.6736,0.4593,95.3,60,180,360,0,0.466
ASSET001015,ORG0007,network_service,high,ot_ics_network,android_iot,0.6841,0.4723,37.6,30,90,180,0,0.3741
ASSET001016,ORG0007,network_service,medium,saas_dependent,freebsd,0.7127,0.5048,78.8,60,180,360,0,0.3317
ASSET001017,ORG0007,database_server,medium,ot_ics_network,linux,0.5997,0.4535,34.3,60,180,360,0,0.4261
ASSET001018,ORG0007,container_workload,medium,saas_dependent,android_iot,0.664,0.4338,83.3,60,180,360,1,0.533
ASSET001019,ORG0007,network_service,high,saas_dependent,android_iot,0.7739,0.5319,37.9,30,90,180,0,0.1403
ASSET001020,ORG0007,network_service,low,ot_ics_network,windows,0.5675,0.5531,131.4,90,270,540,0,0.4454
ASSET001021,ORG0007,supply_chain_dependency,medium,hybrid_cloud,embedded_rtos,0.7023,0.3294,71.7,60,180,360,0,0.2935
ASSET001022,ORG0007,server_on_premises,high,public_cloud_azure,embedded_rtos,0.7034,0.4831,37.5,30,90,180,0,0.483
ASSET001023,ORG0007,api_gateway,medium,ot_ics_network,linux,0.618,0.4405,67.4,60,180,360,1,0.5464
ASSET001024,ORG0007,saas_integration,medium,public_cloud_gcp,freebsd,0.6693,0.5878,45.5,60,180,360,0,0.3794
ASSET001025,ORG0007,container_workload,critical,edge_iot_fleet,windows,0.8841,0.5118,46.1,7,21,42,0,0.3422
ASSET001026,ORG0007,supply_chain_dependency,critical,saas_dependent,android_iot,0.8632,0.4076,43.5,7,21,42,0,0.5549
ASSET001027,ORG0007,saas_integration,critical,hybrid_cloud,embedded_rtos,0.8469,0.4893,39.8,7,21,42,0,0.3612
ASSET001028,ORG0007,iot_firmware_device,low,ot_ics_network,macos,0.5251,0.4108,49.7,90,270,540,0,0.3677
ASSET001029,ORG0007,server_on_premises,low,on_premises_datacenter,macos,0.6294,0.6079,46.2,90,270,540,0,0.4624
ASSET001030,ORG0007,supply_chain_dependency,medium,on_premises_datacenter,freebsd,0.6556,0.5085,72.2,60,180,360,0,0.5005
ASSET001031,ORG0007,ot_ics_controller,high,ot_ics_network,freebsd,0.7317,0.5683,63.0,30,90,180,0,0.4969
ASSET001032,ORG0007,cloud_vm,high,hybrid_cloud,linux,0.7354,0.5019,66.3,30,90,180,0,0.3576
ASSET001033,ORG0007,cloud_vm,medium,public_cloud_azure,linux,0.6494,0.5246,67.8,60,180,360,1,0.2971
ASSET001034,ORG0007,supply_chain_dependency,critical,public_cloud_azure,android_iot,0.8074,0.3164,17.9,7,21,42,1,0.4728
ASSET001035,ORG0007,saas_integration,medium,public_cloud_aws,freebsd,0.6319,0.4458,45.9,60,180,360,0,0.3038
ASSET001036,ORG0007,network_service,medium,on_premises_datacenter,macos,0.6547,0.4531,53.2,60,180,360,1,0.3093
ASSET001037,ORG0007,database_server,high,edge_iot_fleet,macos,0.7971,0.4051,69.5,30,90,180,1,0.2231
ASSET001038,ORG0007,network_service,low,edge_iot_fleet,freebsd,0.6111,0.4177,65.7,90,270,540,0,0.4496
ASSET001039,ORG0007,api_gateway,medium,hybrid_cloud,android_iot,0.686,0.5161,40.0,60,180,360,1,0.3565
ASSET001040,ORG0007,saas_integration,medium,edge_iot_fleet,freebsd,0.6772,0.4871,50.4,60,180,360,0,0.302
ASSET001041,ORG0007,saas_integration,high,on_premises_datacenter,freebsd,0.7093,0.4833,82.9,30,90,180,0,0.3996
ASSET001042,ORG0007,container_workload,critical,saas_dependent,linux,0.8502,0.296,50.0,7,21,42,1,0.3657
ASSET001043,ORG0007,endpoint_workstation,critical,edge_iot_fleet,macos,0.7764,0.4946,30.8,7,21,42,0,0.2947
ASSET001044,ORG0007,database_server,high,ot_ics_network,linux,0.8104,0.428,52.3,30,90,180,1,0.3484
ASSET001045,ORG0007,database_server,critical,hybrid_cloud,linux,0.8153,0.4222,25.0,7,21,42,0,0.4398
ASSET001046,ORG0007,web_application,low,saas_dependent,embedded_rtos,0.5426,0.3482,48.8,90,270,540,0,0.3668
ASSET001047,ORG0007,cloud_vm,high,public_cloud_gcp,freebsd,0.7658,0.5127,58.6,30,90,180,0,0.2383
ASSET001048,ORG0007,container_workload,medium,hybrid_cloud,android_iot,0.6851,0.5516,27.4,60,180,360,1,0.5266
ASSET001049,ORG0007,web_application,low,on_premises_datacenter,windows,0.6485,0.352,80.3,90,270,540,1,0.4955
ASSET001050,ORG0007,endpoint_workstation,high,edge_iot_fleet,embedded_rtos,0.7454,0.5194,52.0,30,90,180,1,0.4936
ASSET001051,ORG0007,supply_chain_dependency,high,public_cloud_azure,macos,0.7003,0.4575,34.6,30,90,180,1,0.4166
ASSET001052,ORG0007,iot_firmware_device,high,hybrid_cloud,freebsd,0.796,0.3273,54.4,30,90,180,1,0.3982
ASSET001053,ORG0007,saas_integration,high,ot_ics_network,embedded_rtos,0.7476,0.4679,51.6,30,90,180,1,0.1963
ASSET001054,ORG0007,network_service,medium,edge_iot_fleet,embedded_rtos,0.6079,0.5742,123.9,60,180,360,0,0.3759
ASSET001055,ORG0007,web_application,high,public_cloud_aws,freebsd,0.7817,0.4849,36.7,30,90,180,0,0.441
ASSET001056,ORG0007,iot_firmware_device,medium,public_cloud_aws,windows,0.646,0.4172,89.4,60,180,360,0,0.4662
ASSET001057,ORG0007,database_server,medium,on_premises_datacenter,windows,0.7033,0.5842,98.9,60,180,360,1,0.4051
ASSET001058,ORG0007,ot_ics_controller,low,public_cloud_aws,macos,0.5279,0.6256,74.4,90,270,540,0,0.5296
ASSET001059,ORG0007,container_workload,high,edge_iot_fleet,embedded_rtos,0.7489,0.4362,29.7,30,90,180,0,0.3007
ASSET001060,ORG0007,supply_chain_dependency,low,edge_iot_fleet,embedded_rtos,0.6285,0.5465,49.2,90,270,540,1,0.5109
ASSET001061,ORG0007,api_gateway,low,public_cloud_gcp,embedded_rtos,0.5369,0.4931,65.5,90,270,540,1,0.2341
ASSET001062,ORG0007,api_gateway,low,edge_iot_fleet,macos,0.6544,0.2837,108.1,90,270,540,1,0.3154
ASSET001063,ORG0007,server_on_premises,medium,hybrid_cloud,windows,0.6399,0.4298,55.2,60,180,360,0,0.4813
ASSET001064,ORG0007,saas_integration,low,on_premises_datacenter,macos,0.6039,0.4821,59.9,90,270,540,0,0.4224
ASSET001065,ORG0007,container_workload,low,ot_ics_network,freebsd,0.589,0.4614,54.8,90,270,540,0,0.4587
ASSET001066,ORG0007,supply_chain_dependency,high,saas_dependent,linux,0.7347,0.3838,39.4,30,90,180,1,0.3689
ASSET001067,ORG0007,database_server,high,public_cloud_aws,windows,0.7244,0.4967,44.7,30,90,180,1,0.2851
ASSET001068,ORG0007,network_service,high,edge_iot_fleet,android_iot,0.7712,0.5966,40.6,30,90,180,1,0.325
ASSET001069,ORG0007,cloud_vm,medium,ot_ics_network,embedded_rtos,0.6327,0.4408,58.0,60,180,360,1,0.4205
ASSET001070,ORG0007,cloud_vm,high,ot_ics_network,embedded_rtos,0.7921,0.6013,27.2,30,90,180,0,0.4601
ASSET001071,ORG0007,supply_chain_dependency,high,hybrid_cloud,windows,0.7985,0.4502,38.4,30,90,180,1,0.2796
ASSET001072,ORG0007,web_application,high,public_cloud_aws,freebsd,0.7422,0.4557,49.9,30,90,180,1,0.3485
ASSET001073,ORG0007,container_workload,high,ot_ics_network,macos,0.7307,0.2871,52.7,30,90,180,0,0.3377
ASSET001074,ORG0007,iot_firmware_device,medium,on_premises_datacenter,macos,0.6519,0.4433,31.9,60,180,360,0,0.303
ASSET001075,ORG0007,database_server,low,on_premises_datacenter,linux,0.6449,0.5069,155.0,90,270,540,1,0.5018
ASSET001076,ORG0007,web_application,low,edge_iot_fleet,freebsd,0.5061,0.5421,69.8,90,270,540,0,0.2002
ASSET001077,ORG0007,supply_chain_dependency,medium,hybrid_cloud,macos,0.657,0.3324,27.9,60,180,360,1,0.413
ASSET001078,ORG0007,saas_integration,medium,saas_dependent,android_iot,0.6573,0.4724,57.6,60,180,360,0,0.2979
ASSET001079,ORG0007,saas_integration,medium,public_cloud_aws,macos,0.6823,0.5365,90.3,60,180,360,1,0.4389
ASSET001080,ORG0007,supply_chain_dependency,high,saas_dependent,linux,0.7495,0.5381,69.7,30,90,180,0,0.5349
ASSET001081,ORG0007,ot_ics_controller,high,saas_dependent,embedded_rtos,0.8126,0.4614,46.7,30,90,180,1,0.4529
ASSET001082,ORG0007,database_server,low,public_cloud_aws,embedded_rtos,0.5129,0.4582,165.2,90,270,540,0,0.3457
ASSET001083,ORG0007,supply_chain_dependency,medium,public_cloud_gcp,windows,0.6593,0.4822,96.2,60,180,360,0,0.2424
ASSET001084,ORG0007,api_gateway,critical,hybrid_cloud,freebsd,0.8087,0.4966,41.8,7,21,42,1,0.2715
ASSET001085,ORG0007,server_on_premises,medium,public_cloud_azure,android_iot,0.6063,0.317,63.3,60,180,360,0,0.5194
ASSET001086,ORG0007,database_server,critical,hybrid_cloud,windows,0.803,0.4484,49.4,7,21,42,0,0.335
ASSET001087,ORG0007,supply_chain_dependency,critical,hybrid_cloud,android_iot,0.8151,0.5406,35.3,7,21,42,1,0.4088
ASSET001088,ORG0007,server_on_premises,high,hybrid_cloud,windows,0.7763,0.4481,79.9,30,90,180,0,0.2392
ASSET001089,ORG0007,ot_ics_controller,high,public_cloud_azure,android_iot,0.676,0.3956,29.1,30,90,180,0,0.4468
ASSET001090,ORG0007,saas_integration,medium,saas_dependent,linux,0.6214,0.4386,49.0,60,180,360,0,0.4667
ASSET001091,ORG0007,endpoint_workstation,low,public_cloud_gcp,linux,0.5233,0.5585,51.8,90,270,540,0,0.3844
ASSET001092,ORG0007,ot_ics_controller,medium,saas_dependent,windows,0.6747,0.4429,58.7,60,180,360,0,0.3624
ASSET001093,ORG0007,endpoint_workstation,high,ot_ics_network,freebsd,0.798,0.4069,27.0,30,90,180,0,0.3415
ASSET001094,ORG0007,ot_ics_controller,critical,public_cloud_azure,windows,0.8375,0.3678,16.0,7,21,42,0,0.4566
ASSET001095,ORG0007,supply_chain_dependency,medium,hybrid_cloud,macos,0.7302,0.4179,75.1,60,180,360,0,0.2396
ASSET001096,ORG0007,server_on_premises,high,edge_iot_fleet,embedded_rtos,0.7384,0.4888,48.9,30,90,180,0,0.3651
ASSET001097,ORG0007,ot_ics_controller,high,on_premises_datacenter,macos,0.8102,0.4097,23.6,30,90,180,0,0.2334
ASSET001098,ORG0007,container_workload,critical,hybrid_cloud,embedded_rtos,0.7836,0.421,43.9,7,21,42,1,0.494
ASSET001099,ORG0007,container_workload,high,ot_ics_network,linux,0.6835,0.3757,36.5,30,90,180,1,0.5102
ASSET001100,ORG0007,endpoint_workstation,critical,public_cloud_aws,macos,0.8438,0.4586,104.4,7,21,42,1,0.3473
ASSET001101,ORG0007,web_application,medium,on_premises_datacenter,freebsd,0.6141,0.4954,78.6,60,180,360,0,0.2273
ASSET001102,ORG0007,ot_ics_controller,low,public_cloud_azure,linux,0.5985,0.5174,78.5,90,270,540,0,0.2659
ASSET001103,ORG0007,container_workload,low,public_cloud_aws,android_iot,0.6312,0.4663,130.1,90,270,540,1,0.3806
ASSET001104,ORG0007,ot_ics_controller,medium,on_premises_datacenter,freebsd,0.6337,0.4722,47.6,60,180,360,1,0.3277
ASSET001105,ORG0007,api_gateway,high,hybrid_cloud,linux,0.7699,0.5441,86.6,30,90,180,0,0.3198
ASSET001106,ORG0007,saas_integration,high,public_cloud_gcp,freebsd,0.7111,0.4745,87.4,30,90,180,0,0.2048
ASSET001107,ORG0007,web_application,medium,public_cloud_azure,android_iot,0.6394,0.5128,67.3,60,180,360,1,0.4474
ASSET001108,ORG0007,saas_integration,medium,ot_ics_network,windows,0.6698,0.4416,35.3,60,180,360,1,0.2741
ASSET001109,ORG0007,api_gateway,medium,public_cloud_gcp,android_iot,0.6994,0.4814,50.0,60,180,360,1,0.4704
ASSET001110,ORG0007,supply_chain_dependency,low,public_cloud_aws,embedded_rtos,0.5574,0.4691,105.8,90,270,540,1,0.4842
ASSET001111,ORG0007,cloud_vm,medium,public_cloud_gcp,macos,0.7168,0.7177,34.2,60,180,360,0,0.5014
ASSET001112,ORG0007,ot_ics_controller,medium,edge_iot_fleet,linux,0.6731,0.4652,32.1,60,180,360,0,0.4455
ASSET001113,ORG0007,container_workload,medium,public_cloud_gcp,freebsd,0.6572,0.391,88.5,60,180,360,0,0.4534
ASSET001114,ORG0007,database_server,medium,hybrid_cloud,linux,0.6717,0.4428,86.6,60,180,360,0,0.5004
ASSET001115,ORG0007,cloud_vm,low,public_cloud_azure,windows,0.5307,0.3567,110.6,90,270,540,0,0.3471
ASSET001116,ORG0007,server_on_premises,critical,hybrid_cloud,windows,0.8404,0.4775,21.1,7,21,42,0,0.4529
ASSET001117,ORG0007,supply_chain_dependency,high,public_cloud_aws,freebsd,0.7298,0.444,55.8,30,90,180,0,0.3265
ASSET001118,ORG0007,cloud_vm,critical,hybrid_cloud,android_iot,0.7942,0.4067,36.3,7,21,42,1,0.4833
ASSET001119,ORG0007,cloud_vm,medium,hybrid_cloud,freebsd,0.7415,0.5175,58.9,60,180,360,0,0.3747
ASSET001120,ORG0007,container_workload,medium,public_cloud_azure,windows,0.6182,0.466,63.1,60,180,360,1,0.4423
ASSET001121,ORG0008,web_application,low,public_cloud_aws,linux,0.6163,0.6735,47.4,90,270,540,1,0.5756
ASSET001122,ORG0008,network_service,medium,public_cloud_azure,windows,0.7132,0.5835,138.9,60,180,360,1,0.5456
ASSET001123,ORG0008,endpoint_workstation,low,hybrid_cloud,macos,0.5398,0.7481,48.7,90,270,540,0,0.5589
ASSET001124,ORG0008,database_server,low,public_cloud_azure,windows,0.5621,0.6279,71.9,90,270,540,0,0.6147
ASSET001125,ORG0008,container_workload,critical,on_premises_datacenter,windows,0.9204,0.7363,15.6,7,21,42,0,0.5861
ASSET001126,ORG0008,supply_chain_dependency,medium,ot_ics_network,android_iot,0.6951,0.6449,77.4,60,180,360,1,0.468
ASSET001127,ORG0008,container_workload,high,public_cloud_gcp,windows,0.8734,0.6992,28.0,30,90,180,0,0.5399
ASSET001128,ORG0008,iot_firmware_device,medium,ot_ics_network,macos,0.7309,0.6279,34.4,60,180,360,0,0.6213
ASSET001129,ORG0008,database_server,medium,edge_iot_fleet,android_iot,0.6739,0.7133,26.6,60,180,360,1,0.5894
ASSET001130,ORG0008,cloud_vm,medium,on_premises_datacenter,linux,0.6716,0.5982,91.0,60,180,360,0,0.6204
ASSET001131,ORG0008,endpoint_workstation,critical,hybrid_cloud,embedded_rtos,0.8843,0.5684,18.3,7,21,42,0,0.46
ASSET001132,ORG0008,cloud_vm,medium,ot_ics_network,embedded_rtos,0.7526,0.6101,100.3,60,180,360,1,0.6503
ASSET001133,ORG0008,container_workload,medium,public_cloud_gcp,freebsd,0.7934,0.5479,63.1,60,180,360,0,0.3323
ASSET001134,ORG0008,network_service,medium,saas_dependent,macos,0.7357,0.6751,31.1,60,180,360,0,0.649
ASSET001135,ORG0008,ot_ics_controller,low,public_cloud_azure,embedded_rtos,0.6745,0.5842,83.7,90,270,540,0,0.6586
ASSET001136,ORG0008,saas_integration,medium,on_premises_datacenter,windows,0.7491,0.5793,57.5,60,180,360,0,0.3154
ASSET001137,ORG0008,iot_firmware_device,low,ot_ics_network,android_iot,0.6407,0.6869,64.7,90,270,540,0,0.5059
ASSET001138,ORG0008,api_gateway,medium,hybrid_cloud,freebsd,0.7747,0.7544,53.5,60,180,360,0,0.692
ASSET001139,ORG0008,supply_chain_dependency,low,hybrid_cloud,freebsd,0.6598,0.7102,63.3,90,270,540,1,0.5016
ASSET001140,ORG0008,saas_integration,critical,public_cloud_aws,embedded_rtos,0.9,0.5825,51.9,7,21,42,1,0.3235
ASSET001141,ORG0008,web_application,medium,ot_ics_network,embedded_rtos,0.7262,0.6678,52.2,60,180,360,1,0.311
ASSET001142,ORG0008,ot_ics_controller,low,public_cloud_azure,windows,0.6,0.6392,51.7,90,270,540,0,0.4805
ASSET001143,ORG0008,server_on_premises,medium,public_cloud_gcp,linux,0.7285,0.6249,43.2,60,180,360,1,0.3711
ASSET001144,ORG0008,ot_ics_controller,medium,saas_dependent,macos,0.7746,0.6056,115.7,60,180,360,0,0.4256
ASSET001145,ORG0008,container_workload,high,on_premises_datacenter,freebsd,0.8086,0.6335,46.1,30,90,180,0,0.4826
ASSET001146,ORG0008,iot_firmware_device,critical,ot_ics_network,windows,1.0,0.6056,29.0,7,21,42,0,0.6498
ASSET001147,ORG0008,iot_firmware_device,medium,ot_ics_network,macos,0.7461,0.6345,55.4,60,180,360,1,0.4633
ASSET001148,ORG0008,iot_firmware_device,high,saas_dependent,windows,0.7633,0.5262,43.5,30,90,180,0,0.6686
ASSET001149,ORG0008,server_on_premises,high,on_premises_datacenter,linux,0.8287,0.6153,56.0,30,90,180,1,0.4212
ASSET001150,ORG0008,network_service,low,edge_iot_fleet,embedded_rtos,0.604,0.5495,55.9,90,270,540,0,0.6464
ASSET001151,ORG0008,saas_integration,high,public_cloud_aws,macos,0.8463,0.6351,47.3,30,90,180,1,0.4277
ASSET001152,ORG0008,saas_integration,medium,public_cloud_gcp,linux,0.7491,0.566,77.6,60,180,360,0,0.3739
ASSET001153,ORG0008,cloud_vm,low,edge_iot_fleet,android_iot,0.6525,0.6017,141.2,90,270,540,0,0.4817
ASSET001154,ORG0008,container_workload,low,public_cloud_azure,macos,0.5939,0.6488,72.3,90,270,540,1,0.4988
ASSET001155,ORG0008,server_on_premises,medium,ot_ics_network,macos,0.6887,0.5231,62.0,60,180,360,1,0.3351
ASSET001156,ORG0008,saas_integration,high,public_cloud_gcp,linux,0.8161,0.6224,48.8,30,90,180,0,0.6037
ASSET001157,ORG0008,endpoint_workstation,low,public_cloud_azure,freebsd,0.7022,0.5991,102.4,90,270,540,0,0.4952
ASSET001158,ORG0008,ot_ics_controller,critical,saas_dependent,embedded_rtos,0.9754,0.5799,27.9,7,21,42,0,0.5056
ASSET001159,ORG0008,container_workload,low,on_premises_datacenter,embedded_rtos,0.6248,0.5371,132.3,90,270,540,1,0.5503
ASSET001160,ORG0008,endpoint_workstation,medium,public_cloud_aws,embedded_rtos,0.7391,0.5868,68.3,60,180,360,1,0.4667
ASSET001161,ORG0008,container_workload,low,on_premises_datacenter,windows,0.6676,0.6553,54.2,90,270,540,1,0.4239
ASSET001162,ORG0008,cloud_vm,medium,edge_iot_fleet,freebsd,0.7558,0.6506,55.8,60,180,360,1,0.4506
ASSET001163,ORG0008,supply_chain_dependency,low,edge_iot_fleet,embedded_rtos,0.599,0.6203,77.7,90,270,540,0,0.5246
ASSET001164,ORG0008,api_gateway,high,edge_iot_fleet,embedded_rtos,0.8394,0.6688,48.3,30,90,180,0,0.5792
ASSET001165,ORG0008,supply_chain_dependency,medium,on_premises_datacenter,freebsd,0.7346,0.5891,40.8,60,180,360,0,0.3109
ASSET001166,ORG0008,web_application,high,public_cloud_azure,embedded_rtos,0.8112,0.6414,54.6,30,90,180,0,0.5166
ASSET001167,ORG0008,server_on_premises,high,saas_dependent,embedded_rtos,0.7965,0.633,84.6,30,90,180,1,0.4482
ASSET001168,ORG0008,network_service,high,saas_dependent,windows,0.8232,0.669,60.1,30,90,180,1,0.569
ASSET001169,ORG0008,cloud_vm,medium,public_cloud_azure,macos,0.8294,0.6816,29.3,60,180,360,1,0.5216
ASSET001170,ORG0008,api_gateway,low,public_cloud_azure,linux,0.6052,0.5257,52.4,90,270,540,0,0.5984
ASSET001171,ORG0008,api_gateway,low,ot_ics_network,macos,0.5972,0.5861,77.7,90,270,540,0,0.5118
ASSET001172,ORG0008,web_application,low,edge_iot_fleet,windows,0.5344,0.626,63.1,90,270,540,0,0.588
ASSET001173,ORG0008,api_gateway,low,public_cloud_gcp,embedded_rtos,0.6488,0.6038,129.0,90,270,540,0,0.4433
ASSET001174,ORG0008,supply_chain_dependency,medium,hybrid_cloud,macos,0.7227,0.7073,37.5,60,180,360,1,0.6324
ASSET001175,ORG0008,web_application,medium,on_premises_datacenter,embedded_rtos,0.7537,0.6004,55.1,60,180,360,0,0.5705
ASSET001176,ORG0008,iot_firmware_device,critical,public_cloud_gcp,embedded_rtos,0.8742,0.616,16.0,7,21,42,0,0.5886
ASSET001177,ORG0008,endpoint_workstation,low,edge_iot_fleet,embedded_rtos,0.669,0.578,150.2,90,270,540,0,0.585
ASSET001178,ORG0008,cloud_vm,medium,ot_ics_network,embedded_rtos,0.7253,0.492,55.6,60,180,360,0,0.5467
ASSET001179,ORG0008,cloud_vm,low,ot_ics_network,linux,0.6311,0.637,78.2,90,270,540,0,0.5508
ASSET001180,ORG0008,server_on_premises,critical,saas_dependent,freebsd,0.916,0.6097,24.0,7,21,42,0,0.4664
ASSET001181,ORG0008,supply_chain_dependency,critical,saas_dependent,embedded_rtos,0.8959,0.7053,23.5,7,21,42,1,0.5332
ASSET001182,ORG0008,ot_ics_controller,medium,on_premises_datacenter,embedded_rtos,0.7674,0.6874,31.1,60,180,360,0,0.457
ASSET001183,ORG0008,container_workload,low,public_cloud_gcp,freebsd,0.5606,0.5894,79.9,90,270,540,0,0.703
ASSET001184,ORG0008,server_on_premises,medium,ot_ics_network,freebsd,0.7288,0.5622,58.6,60,180,360,0,0.4086
ASSET001185,ORG0008,saas_integration,medium,public_cloud_aws,linux,0.6426,0.6475,47.6,60,180,360,1,0.4843
ASSET001186,ORG0008,endpoint_workstation,low,public_cloud_azure,android_iot,0.6378,0.5776,100.4,90,270,540,0,0.3283
ASSET001187,ORG0008,endpoint_workstation,low,public_cloud_azure,macos,0.5953,0.6434,151.8,90,270,540,0,0.3232
ASSET001188,ORG0008,api_gateway,critical,public_cloud_gcp,embedded_rtos,0.8995,0.587,28.6,7,21,42,1,0.5086
ASSET001189,ORG0008,saas_integration,medium,ot_ics_network,windows,0.7442,0.6698,49.9,60,180,360,0,0.4569
ASSET001190,ORG0008,server_on_premises,high,public_cloud_azure,freebsd,0.7893,0.6297,53.5,30,90,180,0,0.1911
ASSET001191,ORG0008,container_workload,medium,hybrid_cloud,android_iot,0.7465,0.6442,38.2,60,180,360,1,0.2619
ASSET001192,ORG0008,ot_ics_controller,critical,ot_ics_network,linux,0.8833,0.6681,18.7,7,21,42,0,0.5739
ASSET001193,ORG0008,web_application,medium,saas_dependent,android_iot,0.7096,0.5565,39.8,60,180,360,0,0.6403
ASSET001194,ORG0008,supply_chain_dependency,high,saas_dependent,linux,0.7892,0.5747,36.8,30,90,180,1,0.6292
ASSET001195,ORG0008,network_service,low,saas_dependent,linux,0.5627,0.5935,75.5,90,270,540,0,0.5949
ASSET001196,ORG0008,endpoint_workstation,medium,on_premises_datacenter,linux,0.7015,0.6239,35.2,60,180,360,0,0.5372
ASSET001197,ORG0008,api_gateway,medium,public_cloud_aws,macos,0.6893,0.6892,65.2,60,180,360,0,0.2076
ASSET001198,ORG0008,web_application,high,saas_dependent,freebsd,0.8202,0.6065,77.5,30,90,180,1,0.2254
ASSET001199,ORG0008,container_workload,critical,public_cloud_gcp,windows,0.8997,0.5451,19.0,7,21,42,0,0.4442
ASSET001200,ORG0008,ot_ics_controller,high,saas_dependent,windows,0.8273,0.6659,67.9,30,90,180,0,0.3914
ASSET001201,ORG0008,supply_chain_dependency,low,public_cloud_gcp,macos,0.6347,0.6487,76.8,90,270,540,1,0.5384
ASSET001202,ORG0008,endpoint_workstation,medium,public_cloud_azure,macos,0.7598,0.6442,16.6,60,180,360,1,0.3922
ASSET001203,ORG0008,supply_chain_dependency,critical,public_cloud_gcp,linux,0.8879,0.6132,46.3,7,21,42,1,0.3536
ASSET001204,ORG0008,cloud_vm,low,hybrid_cloud,android_iot,0.6206,0.6255,115.0,90,270,540,1,0.5716
ASSET001205,ORG0008,api_gateway,low,edge_iot_fleet,freebsd,0.6266,0.6379,45.9,90,270,540,0,0.4155
ASSET001206,ORG0008,endpoint_workstation,high,ot_ics_network,linux,0.8566,0.617,86.8,30,90,180,1,0.446
ASSET001207,ORG0008,server_on_premises,critical,public_cloud_aws,macos,0.964,0.6795,30.8,7,21,42,0,0.3139
ASSET001208,ORG0008,api_gateway,medium,on_premises_datacenter,linux,0.7071,0.6227,67.8,60,180,360,0,0.3008
ASSET001209,ORG0008,iot_firmware_device,high,edge_iot_fleet,freebsd,0.7933,0.5526,48.9,30,90,180,0,0.5845
ASSET001210,ORG0008,network_service,medium,hybrid_cloud,android_iot,0.7474,0.5916,27.8,60,180,360,0,0.553
ASSET001211,ORG0008,container_workload,low,on_premises_datacenter,android_iot,0.5872,0.6848,85.6,90,270,540,1,0.6267
ASSET001212,ORG0008,ot_ics_controller,medium,public_cloud_aws,windows,0.7231,0.516,43.1,60,180,360,0,0.3812
ASSET001213,ORG0008,container_workload,low,public_cloud_aws,freebsd,0.6144,0.6409,67.6,90,270,540,0,0.3042
ASSET001214,ORG0008,iot_firmware_device,critical,public_cloud_azure,macos,0.9703,0.6183,57.1,7,21,42,0,0.3484
ASSET001215,ORG0008,server_on_premises,medium,hybrid_cloud,macos,0.7074,0.6184,43.1,60,180,360,1,0.6089
ASSET001216,ORG0008,web_application,low,public_cloud_gcp,windows,0.6065,0.5565,126.9,90,270,540,0,0.5496
ASSET001217,ORG0008,saas_integration,medium,public_cloud_azure,freebsd,0.7407,0.5842,57.7,60,180,360,1,0.6279
ASSET001218,ORG0008,container_workload,high,on_premises_datacenter,freebsd,0.8755,0.6111,35.9,30,90,180,0,0.5409
ASSET001219,ORG0008,supply_chain_dependency,low,public_cloud_gcp,android_iot,0.5664,0.5925,53.1,90,270,540,1,0.2249
ASSET001220,ORG0008,supply_chain_dependency,low,saas_dependent,embedded_rtos,0.5414,0.6042,157.8,90,270,540,1,0.2955
ASSET001221,ORG0008,saas_integration,low,on_premises_datacenter,android_iot,0.557,0.6163,149.3,90,270,540,0,0.3924
ASSET001222,ORG0008,network_service,medium,hybrid_cloud,freebsd,0.7035,0.7175,46.1,60,180,360,0,0.4722
ASSET001223,ORG0008,container_workload,medium,hybrid_cloud,freebsd,0.7025,0.6137,55.4,60,180,360,0,0.5772
ASSET001224,ORG0008,web_application,high,on_premises_datacenter,freebsd,0.8137,0.633,23.2,30,90,180,1,0.3145
ASSET001225,ORG0008,web_application,high,public_cloud_azure,freebsd,0.8634,0.603,71.7,30,90,180,0,0.3541
ASSET001226,ORG0008,database_server,high,on_premises_datacenter,linux,0.778,0.5369,42.5,30,90,180,0,0.5797
ASSET001227,ORG0008,ot_ics_controller,medium,hybrid_cloud,embedded_rtos,0.7227,0.6537,54.1,60,180,360,1,0.2173
ASSET001228,ORG0008,database_server,low,saas_dependent,macos,0.6501,0.7129,75.2,90,270,540,1,0.307
ASSET001229,ORG0008,saas_integration,medium,hybrid_cloud,macos,0.6944,0.6003,60.9,60,180,360,0,0.2405
ASSET001230,ORG0008,iot_firmware_device,medium,public_cloud_azure,freebsd,0.7618,0.7321,40.2,60,180,360,0,0.365
ASSET001231,ORG0008,database_server,high,on_premises_datacenter,android_iot,0.7875,0.6199,46.5,30,90,180,0,0.6796
ASSET001232,ORG0008,endpoint_workstation,high,public_cloud_azure,macos,0.8228,0.7033,80.5,30,90,180,0,0.5197
ASSET001233,ORG0008,cloud_vm,low,saas_dependent,linux,0.5743,0.5878,160.6,90,270,540,0,0.1489
ASSET001234,ORG0008,network_service,low,hybrid_cloud,macos,0.6921,0.6336,52.8,90,270,540,1,0.6784
ASSET001235,ORG0008,saas_integration,low,hybrid_cloud,linux,0.5773,0.7263,54.6,90,270,540,1,0.5931
ASSET001236,ORG0008,ot_ics_controller,medium,ot_ics_network,macos,0.7443,0.7482,50.7,60,180,360,0,0.4638
ASSET001237,ORG0008,database_server,medium,public_cloud_azure,macos,0.7221,0.6143,69.4,60,180,360,0,0.3978
ASSET001238,ORG0008,container_workload,critical,hybrid_cloud,windows,0.9005,0.5714,28.8,7,21,42,0,0.4842
ASSET001239,ORG0008,web_application,medium,public_cloud_aws,android_iot,0.6992,0.4517,29.4,60,180,360,1,0.612
ASSET001240,ORG0008,ot_ics_controller,high,ot_ics_network,linux,0.8334,0.5955,27.0,30,90,180,0,0.4079
ASSET001241,ORG0008,iot_firmware_device,high,edge_iot_fleet,embedded_rtos,0.7138,0.5937,42.0,30,90,180,1,0.6878
ASSET001242,ORG0008,network_service,medium,ot_ics_network,android_iot,0.6958,0.5854,41.9,60,180,360,1,0.5879
ASSET001243,ORG0008,supply_chain_dependency,medium,saas_dependent,freebsd,0.7739,0.588,80.4,60,180,360,0,0.6805
ASSET001244,ORG0008,server_on_premises,low,public_cloud_aws,windows,0.664,0.5409,82.1,90,270,540,0,0.6169
ASSET001245,ORG0008,cloud_vm,low,ot_ics_network,windows,0.602,0.55,138.7,90,270,540,1,0.5603
ASSET001246,ORG0008,endpoint_workstation,medium,on_premises_datacenter,android_iot,0.7153,0.6984,56.1,60,180,360,1,0.4079
ASSET001247,ORG0008,ot_ics_controller,low,saas_dependent,macos,0.6218,0.674,43.2,90,270,540,0,0.5271
ASSET001248,ORG0008,endpoint_workstation,medium,hybrid_cloud,embedded_rtos,0.7105,0.6357,39.9,60,180,360,0,0.5906
ASSET001249,ORG0008,network_service,low,public_cloud_azure,macos,0.5771,0.5631,63.9,90,270,540,0,0.6809
ASSET001250,ORG0008,cloud_vm,high,edge_iot_fleet,android_iot,0.7656,0.7771,80.6,30,90,180,0,0.2196
ASSET001251,ORG0008,endpoint_workstation,low,public_cloud_gcp,macos,0.6067,0.7229,46.9,90,270,540,0,0.6633
ASSET001252,ORG0008,endpoint_workstation,medium,edge_iot_fleet,macos,0.7486,0.6469,49.7,60,180,360,0,0.5745
ASSET001253,ORG0008,database_server,high,hybrid_cloud,android_iot,0.7888,0.6296,83.2,30,90,180,0,0.5334
ASSET001254,ORG0008,saas_integration,medium,edge_iot_fleet,android_iot,0.7957,0.6158,116.5,60,180,360,0,0.5353
ASSET001255,ORG0008,api_gateway,medium,hybrid_cloud,linux,0.7722,0.5856,83.2,60,180,360,1,0.2573
ASSET001256,ORG0008,endpoint_workstation,low,edge_iot_fleet,freebsd,0.5706,0.6058,68.4,90,270,540,0,0.4114
ASSET001257,ORG0008,ot_ics_controller,critical,public_cloud_azure,freebsd,0.8377,0.5788,18.1,7,21,42,0,0.4573
ASSET001258,ORG0008,database_server,medium,saas_dependent,macos,0.7056,0.5076,49.4,60,180,360,0,0.3042
ASSET001259,ORG0008,endpoint_workstation,high,on_premises_datacenter,windows,0.7922,0.6115,51.8,30,90,180,0,0.4194
ASSET001260,ORG0008,cloud_vm,medium,hybrid_cloud,macos,0.7448,0.662,47.9,60,180,360,1,0.3572
ASSET001261,ORG0008,server_on_premises,low,ot_ics_network,windows,0.6852,0.5966,103.3,90,270,540,0,0.5613
ASSET001262,ORG0008,web_application,medium,public_cloud_aws,embedded_rtos,0.7896,0.6384,55.9,60,180,360,0,0.4449
ASSET001263,ORG0008,ot_ics_controller,low,saas_dependent,linux,0.6568,0.7277,48.5,90,270,540,0,0.604
ASSET001264,ORG0008,cloud_vm,medium,public_cloud_aws,windows,0.7083,0.5732,44.5,60,180,360,1,0.3006
ASSET001265,ORG0008,network_service,low,hybrid_cloud,macos,0.6633,0.5571,38.8,90,270,540,0,0.5699
ASSET001266,ORG0008,database_server,medium,public_cloud_gcp,linux,0.7033,0.5405,91.1,60,180,360,0,0.4679
ASSET001267,ORG0008,iot_firmware_device,medium,on_premises_datacenter,linux,0.7741,0.6061,46.2,60,180,360,0,0.3975
ASSET001268,ORG0008,ot_ics_controller,critical,hybrid_cloud,windows,0.9402,0.7217,48.7,7,21,42,0,0.5348
ASSET001269,ORG0008,network_service,low,public_cloud_aws,windows,0.6397,0.6843,137.0,90,270,540,0,0.5045
ASSET001270,ORG0008,server_on_premises,low,public_cloud_aws,freebsd,0.617,0.5895,71.1,90,270,540,1,0.4098
ASSET001271,ORG0008,supply_chain_dependency,low,saas_dependent,linux,0.6306,0.6618,91.1,90,270,540,0,0.4987
ASSET001272,ORG0008,server_on_premises,low,hybrid_cloud,macos,0.6083,0.643,77.3,90,270,540,0,0.3064
ASSET001273,ORG0008,database_server,medium,on_premises_datacenter,embedded_rtos,0.8413,0.6176,83.3,60,180,360,1,0.6225
ASSET001274,ORG0008,ot_ics_controller,medium,hybrid_cloud,linux,0.7575,0.564,63.8,60,180,360,0,0.4713
ASSET001275,ORG0008,endpoint_workstation,high,public_cloud_azure,windows,0.8777,0.6327,70.3,30,90,180,0,0.6552
ASSET001276,ORG0008,ot_ics_controller,critical,edge_iot_fleet,freebsd,0.9403,0.7597,45.1,7,21,42,1,0.2989
ASSET001277,ORG0008,server_on_premises,high,edge_iot_fleet,android_iot,0.8416,0.6288,43.6,30,90,180,1,0.2828
ASSET001278,ORG0008,network_service,low,public_cloud_azure,linux,0.6117,0.6955,48.0,90,270,540,0,0.3515
ASSET001279,ORG0008,network_service,low,public_cloud_azure,freebsd,0.5346,0.737,59.6,90,270,540,0,0.2935
ASSET001280,ORG0008,cloud_vm,medium,edge_iot_fleet,freebsd,0.7398,0.5578,80.6,60,180,360,0,0.6445
|