aboutsummaryrefslogtreecommitdiff
path: root/2026/cybersec-llmstxt/llms/resecurity.com.txt
blob: b0a4113c8b54749161a6c281f1c30871fb68a181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
<!DOCTYPE html>
<html lang="en">
<head>
        <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
        <link rel="alternate" type="application/rss+xml" title="Resecurity Blog" href="https://www.resecurity.com/feed" />
        <title>Resecurity | Not Found (#404)</title>
    
            <meta property="og:site_name" content="Resecurity">
            <meta property="og:title" content="Resecurity | Not Found (#404)">
            <meta property="og:description" content="">
            <meta property="og:type" content="website">
            <meta property="og:image" content="https://www.resecurity.com/themes/modern/images/logo-og.png">
            <meta property="og:image:width" content="1200">
            <meta property="og:image:height" content="630">
            <meta property="og:image:type" content="image/png">
            <meta property="twitter:card" content="summary_large_image">
            <meta property="twitter:title" content="Resecurity | Not Found (#404)">
            <meta property="twitter:description" content="">
            <meta property="twitter:image" content="https://www.resecurity.com/themes/modern/images/logo-og.png">
    
    <meta name="csrf-param" content="_csrf-frontend">
<meta name="csrf-token" content="F20XP7dhaaJfxhwFyh1mleGpzn_uwTShxyQqE5CgmTZUDHVY8Q8ulTiqWGOmVVXS1Pu-Cp6NRvixRmgrqO31QQ==">

<link href="/themes/modern/dist/css/index.bundle.css?03af5df91ffc137ebcf81be9786a4d55" rel="stylesheet">    
</head>
<body data-cookies_accept="">


<div class="page" id="page">

    

<svg style="opacity: 0; visibility: hidden; width: 0; height: 0; position: absolute; z-index: -9999;" xmlns="http://www.w3.org/2000/svg">

    <defs>
        <linearGradient id="accent" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="#c773a6"/><stop offset="1" stop-color="#8a3ffc"/></linearGradient>
        <linearGradient x1="-107.9%" y1="50%" x2="167.6%" y2="50%" id="gradientPurple"><stop stop-color="#8B3FFC" offset="0%"></stop><stop stop-color="#1062FE" offset="100%"></stop></linearGradient>
    </defs>

    <symbol id="loading" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path stroke-dasharray="16" stroke-dashoffset="16" d="M12 3c4.97 0 9 4.03 9 9"><animate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="16;0"/><animateTransform attributeName="transform" dur="1.5s" repeatCount="indefinite" type="rotate" values="0 12 12;360 12 12"/></path><path stroke-dasharray="64" stroke-dashoffset="64" stroke-opacity="0.3" d="M12 3c4.97 0 9 4.03 9 9c0 4.97 -4.03 9 -9 9c-4.97 0 -9 -4.03 -9 -9c0 -4.97 4.03 -9 9 -9Z"><animate fill="freeze" attributeName="stroke-dashoffset" dur="1.2s" values="64;0"/></path></g></symbol>

    <symbol id="email" width="24" height="24" viewBox="0 0 24 24"><path d="M22 6C22 4.9 21.1 4 20 4H4C2.9 4 2 4.9 2 6V18C2 19.1 2.9 20 4 20H20C21.1 20 22 19.1 22 18V6M20 6L12 11L4 6H20M20 18H4V8L12 13L20 8V18Z" /></symbol>
    <symbol id="lock" width="24" height="24" viewBox="0 0 24 24"><path d="M12,17C10.89,17 10,16.1 10,15C10,13.89 10.89,13 12,13A2,2 0 0,1 14,15A2,2 0 0,1 12,17M18,20V10H6V20H18M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V10C4,8.89 4.89,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z" /></symbol>
    <symbol id="linkedin" viewBox="0 0 11 11">
        <path d="M0.182,10.472 L0.182,3.15 L1.876,3.15 L1.876,10.472 L0.182,10.472 Z M1.722,1.666 C1.52599902,1.8526676 1.2880014,1.946 1.008,1.946 C0.7279986,1.946 0.49000098,1.8526676 0.294,1.666 C0.09799902,1.4793324 0,1.25066802 0,0.98 C0,0.6999986 0.09799902,0.4666676 0.294,0.28 C0.49000098,0.0933324 0.7279986,0 1.008,0 C1.2880014,0 1.52599902,0.0933324 1.722,0.28 C1.91800098,0.4666676 2.016,0.6999986 2.016,0.98 C2.016,1.25066802 1.91800098,1.4793324 1.722,1.666 Z M3.934,10.472 L3.934,3.15 L5.628,3.15 L5.628,4.312 C5.8146676,3.92933142 6.11333128,3.61433457 6.524,3.367 C6.93466872,3.11966543 7.42466382,2.996 7.994,2.996 C8.76867054,2.996 9.37999776,3.23166431 9.828,3.703 C10.2760022,4.17433569 10.5,4.89532848 10.5,5.866 L10.5,10.472 L8.806,10.472 L8.806,6.02 C8.806,5.46933058 8.6893345,5.06333464 8.456,4.802 C8.2226655,4.54066536 7.85400252,4.41 7.35,4.41 C6.84599748,4.41 6.43300161,4.56166515 6.111,4.865 C5.78899839,5.16833485 5.628,5.5999972 5.628,6.16 L5.628,10.472 L3.934,10.472 Z"></path>
    </symbol>
    <symbol id="twitter" viewBox="0 0 11 10">
        <path d="M2.94255309,6.95454707 C2.18142731,7.6894662 1.22695149,8.19271634 0.190553089,8.40554707 C0.108192798,8.41720187 0.0406957208,8.47680423 0.0189382936,8.55708913 C-0.00281913359,8.63737404 0.0253473735,8.72290149 0.0905530888,8.77454707 C0.763549871,9.23550549 1.55604195,9.49086791 2.37155309,9.50954707 C4.55655309,9.70954707 9.39655309,9.10954707 9.79955309,2.95554707 C10.19183,2.50624486 10.4915589,1.98392821 10.6815531,1.41854707 C10.7146352,1.31101865 10.6868644,1.19400687 10.6089918,1.11281173 C10.5311192,1.03161659 10.4153691,0.998983889 10.3065531,1.02754707 C9.8270876,1.20862195 9.28554431,1.06520136 8.95855309,0.670547073 C8.20260248,-0.0752723372 7.03762413,-0.214700301 6.12702158,0.331661227 C5.21641903,0.878022756 4.7912186,1.97155799 5.09355309,2.98954707 C3.37110412,3.0515954 1.72664263,2.26967374 0.687553089,0.894547073 C0.618043394,0.788690576 0.491134964,0.735756642 0.367007188,0.760846299 C0.242879412,0.785935956 0.146492662,0.884004022 0.123553089,1.00854707 C-0.396783315,3.40081769 0.761139658,5.84317669 2.94255309,6.95454707 Z"></path>
    </symbol>
    <symbol id="arrow-right" viewBox="0 0 24 24">
        <path d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z" />
    </symbol>
    <symbol id="arrow-left" viewBox="0 0 24 24">
        <path d="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z" />
    </symbol>
    <symbol id="arrow-right-bottom" viewBox="0 0 16 12">
        <path d="M14.948,5.22 L9.948,0.22 C9.65249025,-0.0553588604 9.19199028,-0.0472338759 8.9063782,0.238378201 C8.62076612,0.523990278 8.61264114,0.984490246 8.888,1.28 L12.607,5 L1.5,5 L1.5,0.75 C1.5,0.335786438 1.16421356,-1.11022302e-16 0.75,-1.11022302e-16 C0.335786438,-1.11022302e-16 0,0.335786438 0,0.75 L0,5.75 C0,6.16421356 0.335786438,6.5 0.75,6.5 L12.607,6.5 L8.888,10.219 C8.69294583,10.4072144 8.61462391,10.686029 8.68313713,10.9482822 C8.75165034,11.2105354 8.95633652,11.4154146 9.21852495,11.4841751 C9.48071338,11.5529356 9.75960179,11.4748766 9.948,11.28 L14.948,6.28 C15.0889416,6.13963558 15.1681705,5.94891382 15.1681705,5.75 C15.1681705,5.55108618 15.0889416,5.36036442 14.948,5.22 L14.948,5.22 Z"></path>
    </symbol>
    <symbol id="arrow-down" width="24" height="24" viewBox="0 0 24 24">
        <path d="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z" />
    </symbol>
    <symbol id="download" width="16px" height="16px" viewBox="0 0 16 16">
        <path d="M14.75,10.738 C14.3357864,10.738 14,11.0737864 14,11.488 L14,14.001 L1.5,14.001 L1.5,11.491 C1.5,11.0767864 1.16421356,10.741 0.75,10.741 C0.335786438,10.741 0,11.0767864 0,11.491 L0,14.751 C0,15.1652136 0.335786438,15.501 0.75,15.501 L14.75,15.501 C15.1642136,15.501 15.5,15.1652136 15.5,14.751 L15.5,11.491 C15.5007977,11.2915684 15.4221324,11.1000313 15.2813936,10.9587295 C15.1406547,10.8174277 14.9494332,10.738 14.75,10.738 L14.75,10.738 Z" id="Path"></path>
        <path d="M7.289,11.18 C7.56055551,11.3918953 7.94144449,11.3918953 8.213,11.18 L11.513,8.602 C11.724144,8.4369433 11.8311923,8.17178065 11.793821,7.90639626 C11.7564497,7.64101187 11.5803363,7.41572393 11.331821,7.31539625 C11.0833057,7.21506856 10.800144,7.25494329 10.589,7.42 L8.365,9.157 L8.365,0.75 C8.365,0.335786438 8.02921356,0 7.615,0 C7.20078644,0 6.865,0.335786438 6.865,0.75 L6.865,8.95 L4.913,7.42 C4.70272572,7.24666103 4.41497525,7.20101733 4.16138148,7.30077639 C3.90778771,7.40053544 3.72825894,7.62999808 3.69244342,7.90014419 C3.65662789,8.1702903 3.77016195,8.43860672 3.989,8.601 L7.289,11.18 Z"></path>
    </symbol>
    <symbol id="search" viewBox="0 0 14 14">
        <path d="M5.5,11 C2.46243388,11 0,8.53756612 0,5.5 C0,2.46243388 2.46243388,0 5.5,0 C8.53756612,0 11,2.46243388 11,5.5 C10.9966932,8.53619535 8.53619535,10.9966932 5.5,11 Z M5.5,1.5 C3.290861,1.5 1.5,3.290861 1.5,5.5 C1.5,7.709139 3.290861,9.5 5.5,9.5 C7.709139,9.5 9.5,7.709139 9.5,5.5 C9.5,4.43913404 9.07857264,3.42171839 8.32842712,2.67157288 C7.57828161,1.92142736 6.56086596,1.5 5.5,1.5 Z"></path>
        <path d="M13,13.7510007 C12.802537,13.7512648 12.613024,13.67323 12.473,13.534 L8.4,9.511 C8.10535609,9.21939365 8.10289365,8.74414391 8.3945,8.4495 C8.68610635,8.15485609 9.16135609,8.15239365 9.456,8.444 L13.527,12.468 C13.7429846,12.6818151 13.8085826,13.004838 13.6931083,13.2859642 C13.577634,13.5670904 13.303918,13.7507381 13,13.7510007 L13,13.7510007 Z"></path>
    </symbol>
    <symbol id="close" viewBox="0 0 128 128"><path d="m71.1 64 42.9 42.9-7.1 7.1-42.9-42.9-42.9 42.9-7.1-7.1 42.9-42.9-42.9-42.9 7.1-7.1 42.9 42.9 42.9-42.9 7.1 7.1z"/></symbol>
    <symbol id="facebook" viewBox="0 0 24 24"><g><path d="M13,10h3v3h-3v7h-3v-7H7v-3h3V8.745c0-1.189,0.374-2.691,1.118-3.512C11.862,4.41,12.791,4,13.904,4H16v3h-2.1   C13.402,7,13,7.402,13,7.899V10z"/></g></symbol>
    <symbol id="vimeo" viewBox="0 0 24 24"><path d="M22,7.42C21.91,9.37 20.55,12.04 17.92,15.44C15.2,19 12.9,20.75 11,20.75C9.85,20.75 8.86,19.67 8.05,17.5C7.5,15.54 7,13.56 6.44,11.58C5.84,9.42 5.2,8.34 4.5,8.34C4.36,8.34 3.84,8.66 2.94,9.29L2,8.07C3,7.2 3.96,6.33 4.92,5.46C6.24,4.32 7.23,3.72 7.88,3.66C9.44,3.5 10.4,4.58 10.76,6.86C11.15,9.33 11.42,10.86 11.57,11.46C12,13.5 12.5,14.5 13.05,14.5C13.47,14.5 14.1,13.86 14.94,12.53C15.78,11.21 16.23,10.2 16.29,9.5C16.41,8.36 15.96,7.79 14.94,7.79C14.46,7.79 13.97,7.9 13.46,8.12C14.44,4.89 16.32,3.32 19.09,3.41C21.15,3.47 22.12,4.81 22,7.42Z" /></symbol>

    <symbol id="notifications" viewBox="0 0 24 27"><path d="M7.04,22.432 L0.981,22.432 C0.43920866,22.432 0,21.9927913 0,21.451 C0,20.9092087 0.43920866,20.47 0.981,20.47 L1.464,20.47 C2.285,20.47 2.639,18.345 2.639,17.262 L2.639,12.834 C2.64221432,9.16779353 4.73111756,5.82283296 8.024,4.211 C8.024,1.88532892 9.90932892,0 12.235,0 C14.5606711,0 16.446,1.88532892 16.446,4.211 C19.7398761,5.82269458 21.8298929,9.16796276 21.834,12.835 L21.834,17.144 C21.7141376,18.4958331 22.3306957,19.8076425 23.448,20.578 C23.8595123,20.7724521 24.0794669,21.2277748 23.976,21.671 C23.8694821,22.1199835 23.4674404,22.4362286 23.006,22.434 L17.435,22.434 C16.9694592,24.9395267 14.7834097,26.7568111 12.235,26.7568111 C9.68659027,26.7568111 7.50054078,24.9395267 7.035,22.434 L7.04,22.432 Z M12.24,24.779 C13.6982806,24.7762224 14.9852159,23.8252031 15.416,22.432 L9.058,22.432 C9.49030008,23.8252747 10.7782017,24.7757048 12.237,24.778 L12.24,24.779 Z M4.601,12.834 L4.601,17.262 C4.58859789,18.0507485 4.48797177,18.8356322 4.301,19.602 C4.22553436,19.8979901 4.12861131,20.1880908 4.011,20.47 L20.711,20.47 C20.1330035,19.4580816 19.8409252,18.308088 19.866,17.143 L19.866,12.834 C19.866,8.61785822 16.4481418,5.2 12.232,5.2 C8.01585822,5.2 4.598,8.61785822 4.598,12.834 L4.601,12.834 Z M10.112,3.474 C11.5097953,3.15889891 12.9602047,3.15889891 14.358,3.474 C14.0425072,2.57156869 13.1909906,1.96720752 12.235,1.96720752 C11.2790094,1.96720752 10.4274928,2.57156869 10.112,3.474 L10.112,3.474 Z"></path></symbol>
    <symbol id="global" viewBox="0 0 26 26"><path d="M12.9701341,26.0010084 C9.53143005,26.0031325 6.23399425,24.6331903 3.80913406,22.1950059 C1.36086231,19.7631552 -0.011015722,16.4517752 6.66260003e-05,13.0010059 C-0.00994816411,9.55113113 1.36223685,6.24095988 3.81013406,3.81000594 C6.23401177,1.36926208 9.53230728,-0.00232773793 12.9721341,2.96552025e-06 L13.0321341,2.96552025e-06 C16.4719608,-0.00232773793 19.7702564,1.36926208 22.1941341,3.81000594 C24.6395233,6.24231796 26.0100453,9.55195216 26.0001874,13.0010059 C26.0093761,16.4499276 24.6389566,19.7593143 22.1941341,22.1920059 C19.7688962,24.6296273 16.4717056,25.9994676 13.0331341,25.9980059 L12.9721341,25.9980059 L12.9701341,26.0010084 Z M13.0001341,24.0010059 C13.7121341,24.0010059 14.5941341,22.8750059 15.2441341,21.1360059 C16.0310023,18.8379412 16.449176,16.4298143 16.4831341,14.0010059 L9.51413406,14.0010059 C9.54809209,16.4298143 9.96626579,18.8379412 10.7531341,21.1360059 C11.4061341,22.8750059 12.2881341,24.0010059 13.0001341,24.0010059 L13.0001341,24.0010059 Z M9.63013406,23.4740059 C9.33979585,22.9480834 9.08910006,22.4012323 8.88013406,21.8380059 C8.01286645,19.3144722 7.55212114,16.6691528 7.51513406,14.0010059 L2.04613406,14.0010059 C2.45341834,18.3907156 5.43591456,22.1160831 9.63013406,23.4740059 L9.63013406,23.4740059 Z M17.1171341,21.8380059 C16.9097507,22.4010758 16.6600371,22.9476377 16.3701341,23.4730059 C20.5635743,22.1145475 23.5457046,18.3900304 23.9541341,14.0010059 L18.4841341,14.0010059 C18.4485754,16.6693701 17.9874444,19.3149659 17.1181341,21.8380059 L17.1171341,21.8380059 Z M23.9541341,11.9990059 C23.5451052,7.61143671 20.5634082,3.8885425 16.3711341,2.53100594 C16.6610571,3.05622198 16.9104488,3.60281109 17.1171341,4.16600594 C17.9868884,6.68761622 18.4486944,9.33186082 18.4851341,11.9990059 L23.9541341,11.9990059 Z M16.4821341,11.9990059 C16.4479058,9.57152812 16.0297337,7.16476042 15.2431341,4.86800594 C14.5931341,3.12600594 13.7121341,2.00200594 12.9991341,2.00200594 C12.2861341,2.00200594 11.4061341,3.12600594 10.7521341,4.86800594 C9.96553443,7.16476042 9.54736234,9.57152812 9.51313406,11.9990059 L16.4821341,11.9990059 Z M7.51513406,11.9990059 C7.55179897,9.33221806 8.01221228,6.68821698 8.87913406,4.16600594 C9.08738494,3.60264644 9.33775936,3.05576719 9.62813406,2.53000594 C5.43508082,3.88700698 2.4530179,7.61075137 2.04513406,11.9990059 L7.51513406,11.9990059 Z"></path></symbol>
    <symbol id="support" viewBox="0 0 26 26"><path d="M3.80810717,22.1911048 C1.36198419,19.7591228 -0.00927500341,16.4494476 5.32968197e-05,13.0001048 C-0.00985110386,9.55025784 1.3610463,6.23986649 3.80710717,3.8071048 C6.23993219,1.36113842 9.55028223,-0.00974188133 13.0001072,5.21199545e-05 C16.4501011,-0.00761046919 19.7600179,1.36417055 22.1931072,3.8101048 C24.6384275,6.24213438 26.0092634,9.55129695 26.0001527,13.0001048 C26.0092192,16.4486103 24.6383696,19.7574459 22.1931072,22.1891048 C19.75993,24.6350288 16.4501574,26.0071101 13.0001072,26.000145 C9.55042777,26.0087089 6.24061134,24.6371803 3.80810717,22.1911048 Z M13.0001072,24.000112 C15.5720174,24.0021399 18.0626979,23.0994629 20.0361072,21.4501048 L16.7141072,18.1301048 C15.635082,18.915314 14.3345908,19.337606 13.0001072,19.3361048 C11.6656236,19.337606 10.3651323,18.915314 9.28610717,18.1301048 L5.96310717,21.4501048 C7.93643432,23.1002847 10.4277338,24.0030577 13.0001072,24.000112 Z M2.00010163,13.0001048 C1.99792324,15.5711338 2.90066033,18.0609181 4.55010717,20.0331048 L7.87210717,16.7111048 C7.08748469,15.632977 6.66553677,14.3335175 6.66710717,13.0001048 C6.66539409,11.6652796 7.08769647,10.3644061 7.87310717,9.2851048 L4.55110717,5.9631048 C2.90064202,7.93633618 1.99752014,10.4276214 2.00010163,13.0001048 Z M21.4511072,20.0331048 C23.1002687,18.0608224 24.0026569,15.5710239 24.0001127,13.0001048 C24.0026942,10.4276214 23.0995723,7.93633618 21.4491072,5.9631048 L18.1261072,9.2831048 C18.912277,10.3628366 19.3349538,11.6644849 19.3331072,13.0001048 C19.3343965,14.3342468 18.9121149,15.6343558 18.1271072,16.7131048 L21.4511072,20.0331048 Z M8.66910717,13.0001048 C8.67186251,15.3914601 10.6097519,17.3293495 13.0011072,17.3321048 C15.3924625,17.3293495 17.3303518,15.3914601 17.3331072,13.0001048 C17.3314561,10.6076435 15.3935659,8.66796393 13.0011072,8.6641048 C10.6082579,8.66741308 8.66975931,10.6072538 8.66810717,13.0001048 L8.66910717,13.0001048 Z M16.7131072,7.8701048 L20.0371072,4.5491048 C18.0634681,2.89958604 15.5722959,1.99721316 13.0001072,2.00009787 C10.4276238,1.99751776 7.93633855,2.90063965 5.96310717,4.5511048 L9.28710717,7.8721048 C10.3663095,7.08943384 11.6659742,6.6692836 12.9991072,6.6721048 C14.3329231,6.66886004 15.6333521,7.08903097 16.7131072,7.8721048 L16.7131072,7.8701048 Z"></path></symbol>
    <symbol id="shield" viewBox="0 0 22 27"><path d="M10.5533508,0.0469894932 C10.9460456,-0.0635797855 11.385028,0.0199892078 11.7153557,0.308236787 C13.1468472,1.52026732 14.9492891,2.20716388 16.8243557,2.25523679 C17.7575708,2.31000355 18.6939158,2.23937408 19.6083557,2.04523679 C19.9822577,1.9493548 20.3794851,2.03188553 20.6842489,2.26877186 C20.9890126,2.50565819 21.1670099,2.87023725 21.1663557,3.25623679 L21.1663557,12.6082368 C21.1723557,13.0082368 21.1783557,18.7422368 17.1493557,22.1212368 C15.3922774,23.6695219 13.5169028,25.0781426 11.5403557,26.3342368 C11.3518686,26.4419824 11.138465,26.4985223 10.9213557,26.4982389 C10.8020072,26.4984579 10.6857747,26.4817624 10.5752701,26.4501546 C10.4687411,26.4795998 10.3569981,26.4952195 10.2423557,26.4952368 L10.2473557,26.4982368 C10.0294059,26.4982368 9.81529212,26.4408883 9.62635572,26.3322368 C7.65030167,25.075885 5.77527898,23.6672775 4.01835572,22.1192368 C-0.0106442841,18.7412368 -0.0046442841,13.0102368 0.000355715896,12.6062368 L0.000355715896,3.25423679 C0.000490589003,2.86779452 0.179356584,2.50314217 0.484858462,2.26648579 C0.790360341,2.0298294 1.18814471,1.94778077 1.56235572,2.04423679 C2.47555769,2.23755092 3.41051529,2.30784089 4.34235572,2.25323679 C6.21733145,2.20560435 8.01981092,1.51904631 9.45135572,0.307236787 C9.76768434,0.0397876229 10.1787169,-0.0436515099 10.5533508,0.0469894932 Z M10.5820287,2.58880722 C8.25867201,4.28909886 5.37029382,5.05381021 2.49535572,4.71323679 L2.49535572,12.6132368 C2.49535572,12.6212368 2.49535572,12.6292368 2.49535572,12.6382368 C2.49535572,12.6842368 2.45935572,17.5502368 5.61935572,20.2012368 C7.18349253,21.5750564 8.84217652,22.8371162 10.5831055,23.9781293 C12.322821,22.8376992 13.9803356,21.5763078 15.5433557,20.2032368 C18.7033557,17.5532368 18.6673557,12.6862368 18.6663557,12.6372368 C18.6663557,12.6292368 18.6663557,12.6242368 18.6663557,12.6152368 L18.6663557,4.71523679 C15.7919784,5.05462016 12.9045212,4.28925005 10.5820287,2.58880722 Z M10.1603557,16.367237 C9.80565824,16.3674345 9.46757737,16.216934 9.23035572,15.9532368 L7.09335572,13.5752368 C6.78558416,13.2445525 6.68018249,12.7735374 6.81765988,12.3432173 C6.95513728,11.9128972 7.31410034,11.590236 7.75658829,11.4992424 C8.19907624,11.4082488 8.65623179,11.5630828 8.95235572,11.9042368 L10.1593557,13.2482368 L12.7463557,10.3702368 C13.2109345,9.87107141 13.9898527,9.8363555 14.4969962,10.2922118 C15.0041398,10.7480681 15.0523525,11.5262675 14.6053557,12.0412368 L11.0893557,15.9542368 C10.8521874,16.2173045 10.5145497,16.3674061 10.1603557,16.367237 Z"></path></symbol>

    <symbol id="info" viewBox="0 0 14 14"><path d="M7.00253537,1.11902665e-07 C10.6028904,0.000644404342 13.6155883,2.73226992 13.9677219,6.31536334 C14.3198556,9.89845676 11.8965686,13.1643115 8.36522005,13.865834 C4.8338715,14.5673566 1.34629019,12.4757296 0.302130073,9.03011123 C-0.742030047,5.58449283 0.997807351,1.90874902 4.32453537,0.532000224 C5.17362926,0.180607208 6.08360258,-0.000164192738 7.00253537,1.11902665e-07 Z M7.00253537,12.443001 C9.80584613,12.4445294 12.1530747,10.3192022 12.4290368,7.52950716 C12.7049989,4.73981212 10.8196714,2.19579212 8.07039329,1.64804828 C5.32111516,1.10030443 2.60474466,2.7275195 1.7904814,5.4099678 C0.976218143,8.0924161 2.32968775,10.9550404 4.91953537,12.0280002 C5.58016573,12.3003797 6.28795719,12.4400351 7.00253537,12.4390002 L7.00253537,12.443001 Z"></path><path d="M7.80853537,10.7470002 L7.00253537,10.7470002 C6.53923014,10.7673886 6.1462637,10.4101464 6.12253537,9.94700022 L6.12253537,7.79900022 C5.83672288,7.78596005 5.57957811,7.62143127 5.44796501,7.36739031 C5.3163519,7.11334934 5.33026562,6.80839105 5.48446501,6.56739028 C5.63866439,6.32638951 5.90972289,6.18596001 6.19553537,6.19900022 L7.00253537,6.19900022 C7.46564025,6.17916547 7.85827493,6.53610609 7.88253537,6.99900022 L7.88253537,9.13900022 C8.16834785,9.15221904 8.42539732,9.31691288 8.55685572,9.57104316 C8.68831412,9.82517344 8.6742098,10.1301317 8.51985572,10.3710432 C8.36550163,10.6119546 8.09434785,10.7522191 7.80853537,10.7390002 L7.80853537,10.7470002 Z M7.00853537,4.85600022 C6.70373363,4.8859711 6.4082342,4.74081671 6.24565359,4.48125959 C6.08307298,4.22170247 6.08143405,3.89248063 6.2414224,3.63131768 C6.40141075,3.37015474 6.69545034,3.22206549 7.00053537,3.24900022 L7.00853537,3.24900022 C7.31350437,3.2205042 7.60831845,3.36711567 7.76963,3.62749366 C7.93094155,3.88787165 7.93094155,4.2171288 7.76963,4.47750679 C7.60831845,4.73788478 7.31350437,4.88449624 7.00853537,4.85600022 L7.00853537,4.85600022 Z"></path></symbol>
    <symbol id="user" viewBox="0 0 16 20"><path d="M4-1A5,5,0,0,1,9,4,5,5,0,0,1,4,9,5,5,0,0,1-1,4,5,5,0,0,1,4-1ZM4,7a3,3,0,1,0-2.121-.879A2.98,2.98,0,0,0,4,7Z" transform="translate(4 1)" /><path d="M7-1a8,8,0,0,1,8,8,1,1,0,0,1-1,1H0A1,1,0,0,1-1,7,8,8,0,0,1,7-1Zm5.918,7A6,6,0,0,0,2.757,2.757,5.956,5.956,0,0,0,1.082,6Z" transform="translate(1 12)" /></symbol>
    <symbol id="family" viewBox="0 0 23 20"><path d="M9.02642341,19.9980354 C8.57950545,19.9972613 8.15292591,19.8111307 7.84842341,19.484 C7.55006297,19.1642539 7.39951474,18.7340124 7.43342341,18.298 C7.73566829,14.3325204 11.0414421,11.2691211 15.0184234,11.2691211 C18.9954048,11.2691211 22.3011785,14.3325204 22.6034234,18.298 C22.6331839,18.7399227 22.4776102,19.1742843 22.174046,19.4968213 C21.8704818,19.8193582 21.4463372,20.0009473 21.0034234,19.9980354 L9.02642341,19.9980354 Z M9.79542341,17.736 L20.2414234,17.736 C19.6989658,15.2857251 17.5265265,13.5416334 15.0169234,13.5416334 C12.5073204,13.5416334 10.334881,15.2857251 9.79242341,17.736 L9.79542341,17.736 Z M1.44342341,19.936 C1.04504955,19.9351649 0.664718844,19.769788 0.392423412,19.479 C0.11639042,19.1781831 -0.0242138528,18.7773344 0.00342341205,18.37 C0.0918156738,16.9241396 0.698589116,15.5586331 1.71242341,14.524 C2.70750771,13.4969612 4.07539246,12.9156192 5.50542341,12.9119874 C5.82572154,12.9112953 6.14540426,12.9400835 6.46042341,12.998 C7.06386928,13.1228755 7.45628562,13.7078559 7.34293516,14.3135724 C7.22958471,14.9192889 6.65219044,15.3227843 6.04442341,15.221 C5.86690669,15.1860705 5.68634115,15.1689855 5.50542341,15.17 C4.03093463,15.2278535 2.76987521,16.2480913 2.40542341,17.678 L4.75542341,17.678 C5.37895288,17.6780001 5.88442336,18.1834706 5.88442336,18.807 C5.88442336,19.4305295 5.37895288,19.936 4.75542341,19.936 L1.44342341,19.936 Z M1.65342341,8.14400004 C1.65397577,6.016047 3.37947029,4.29144799 5.50742333,4.29200017 C7.63537636,4.29255261 9.35997541,6.01804709 9.35942329,8.14600013 C9.35887089,10.2739532 7.63337645,11.9985523 5.50542341,11.9980002 C3.37838472,11.9952433 1.65507605,10.2710399 1.65342341,8.14400004 L1.65342341,8.14400004 Z M3.91142215,8.14400004 C3.91061427,8.78938968 4.29881835,9.37166138 4.89488735,9.61910874 C5.49095635,9.86655611 6.17740061,9.73040541 6.63390353,9.27418887 C7.09040646,8.81797234 7.22698791,8.13161365 6.97991465,7.53538949 C6.7328414,6.93916532 6.15081344,6.55059591 5.50542341,6.55099972 C4.62570014,6.5515509 3.91252634,7.26427729 3.91142215,8.14400004 L3.91142215,8.14400004 Z M10.1954225,4.82400004 C10.1937671,2.16143602 12.3508588,0.0016585881 15.0134228,9.52533284e-07 C17.6759868,-0.00165477578 19.8357645,2.15543664 19.8374225,4.81800066 C19.8390786,7.48056468 17.6819874,9.64034267 15.0194234,9.64200004 C12.3593642,9.63760712 10.2031269,7.48405177 10.1954225,4.82400004 Z M12.4614234,4.82400004 C12.4630798,6.23622253 13.6088647,7.37991918 15.0210879,7.37899985 C16.433311,7.37807942 17.577605,6.23289107 17.5774216,4.82066762 C17.5772382,3.40844416 16.4326468,2.26355309 15.0204234,2.26299984 C14.3410307,2.26273475 13.6893734,2.53243651 13.2088765,3.01274593 C12.7283795,3.49305535 12.4584234,4.14460731 12.4584234,4.82400004 L12.4614234,4.82400004 Z"></path></symbol>

    <symbol id="windows" viewBox="0 0 24 24"><path d="M3,12V6.75L9,5.43V11.91L3,12M20,3V11.75L10,11.9V5.21L20,3M3,13L9,13.09V19.9L3,18.75V13M20,13.25V22L10,20.09V13.1L20,13.25Z" /></symbol>
    <symbol id="apple" viewBox="0 0 24 24"><path d="M18.71,19.5C17.88,20.74 17,21.95 15.66,21.97C14.32,22 13.89,21.18 12.37,21.18C10.84,21.18 10.37,21.95 9.1,22C7.79,22.05 6.8,20.68 5.96,19.47C4.25,17 2.94,12.45 4.7,9.39C5.57,7.87 7.13,6.91 8.82,6.88C10.1,6.86 11.32,7.75 12.11,7.75C12.89,7.75 14.37,6.68 15.92,6.84C16.57,6.87 18.39,7.1 19.56,8.82C19.47,8.88 17.39,10.1 17.41,12.63C17.44,15.65 20.06,16.66 20.09,16.67C20.06,16.74 19.67,18.11 18.71,19.5M13,3.5C13.73,2.67 14.94,2.04 15.94,2C16.07,3.17 15.6,4.35 14.9,5.19C14.21,6.04 13.07,6.7 11.95,6.61C11.8,5.46 12.36,4.26 13,3.5Z" /></symbol>
    <symbol id="google" viewBox="0 0 24 24"><path d="M3,20.5V3.5C3,2.91 3.34,2.39 3.84,2.15L13.69,12L3.84,21.85C3.34,21.6 3,21.09 3,20.5M16.81,15.12L6.05,21.34L14.54,12.85L16.81,15.12M20.16,10.81C20.5,11.08 20.75,11.5 20.75,12C20.75,12.5 20.53,12.9 20.18,13.18L17.89,14.5L15.39,12L17.89,9.5L20.16,10.81M6.05,2.66L16.81,8.88L14.54,11.15L6.05,2.66Z" /></symbol>

    <symbol id="smart-awareness" viewBox="0 0 35 37"><path fill="url(#gradientPurple)" d="M17.347,22.2851531 C14.0250072,22.2851531 11.332,19.5921459 11.332,16.2701531 C11.332,12.9481603 14.0250072,10.2551531 17.347,10.2551531 C20.6689928,10.2551531 23.362,12.9481603 23.362,16.2701531 C23.3575929,19.5903187 20.6671656,22.280746 17.347,22.2851531 Z M17.347,11.2551531 C14.577292,11.2551531 12.332,13.5004451 12.332,16.2701531 C12.332,19.0398611 14.577292,21.2851531 17.347,21.2851531 C20.116708,21.2851531 22.362,19.0398611 22.362,16.2701531 C22.3586939,13.5018157 20.1153374,11.2584592 17.347,11.2551531 Z M28.821,36.7961531 L6.792,36.7961531 C6.27367414,36.7951979 5.78045801,36.5728017 5.43657504,36.1849782 C5.09269208,35.7971546 4.93091877,35.2808682 4.992,34.7661531 C5.74,28.5511531 11.13,24.0411531 17.808,24.0411531 C24.486,24.0411531 29.875,28.5511531 30.624,34.7661531 C30.6850812,35.2808682 30.5233079,35.7971546 30.179425,36.1849782 C29.835542,36.5728017 29.3423259,36.7951979 28.824,36.7961531 L28.821,36.7961531 Z M17.807,25.0411531 C11.643,25.0411531 6.67,29.1811531 5.983,34.8851531 C5.95394339,35.1161558 6.02696238,35.3483562 6.183,35.5211531 C6.33697605,35.6956015 6.55831851,35.7957153 6.791,35.7961531 L28.82,35.7961531 C29.0532158,35.795878 29.2750546,35.6953402 29.429,35.5201531 C29.5847567,35.3475961 29.6577557,35.1158242 29.629,34.8851531 C28.947,29.1811531 23.97,25.0411531 17.807,25.0411531 Z M29.156,16.7131531 C28.8798576,16.7131531 28.656,16.4892955 28.656,16.2131531 C28.6236212,12.2023666 26.4778768,8.50613652 23.011,6.48915309 C22.7738932,6.3501502 22.6934357,6.04582957 22.8308627,5.80780594 C22.9682898,5.56978231 23.27207,5.48730794 23.511,5.62315309 C27.2840811,7.81973613 29.6189859,11.8433895 29.654,16.2091531 C29.654,16.4852955 29.4301424,16.7091531 29.154,16.7091531 L29.156,16.7131531 Z M5.538,16.7131531 C5.26185763,16.7131531 5.038,16.4892955 5.038,16.2131531 C5.07165809,11.8370786 7.41737565,7.80519829 11.205,5.61315309 C11.3599945,5.5146234 11.556531,5.50899923 11.7169064,5.59850415 C11.8772818,5.68800906 11.9756776,5.85823383 11.973238,6.04187813 C11.9707062,6.22552242 11.8677392,6.39302166 11.705,6.47815309 C8.22553061,8.49228326 6.07021863,12.1959056 6.038,16.2161531 C6.03635015,16.4911232 5.81297503,16.7131531 5.538,16.7131531 Z M34.194,16.7131531 C33.9178576,16.7131531 33.694,16.4892955 33.694,16.2131531 C33.6411112,9.43149427 29.4275799,3.37891228 23.086,0.975153088 C22.8275308,0.877950917 22.696798,0.589622349 22.7940001,0.331153139 C22.8912022,0.0726839286 23.1795308,-0.0580489336 23.438,0.0391530877 C30.1669626,2.59040994 34.6377494,9.01299541 34.694016,16.2091531 C34.6950664,16.342453 34.6428592,16.47066 34.5489752,16.5652951 C34.4550911,16.6599302 34.3273042,16.7131531 34.194,16.7131531 Z M0.5,16.7131531 C0.223857625,16.7131531 0,16.4892955 0,16.2131531 C0.0551012009,9.00694873 4.53824315,2.57731008 11.281,0.0341530877 C11.4491173,-0.0313849331 11.6395047,-0.00125753255 11.779173,0.112985276 C11.9188413,0.227228084 11.986121,0.407861611 11.955219,0.585635949 C11.9243169,0.763410288 11.8000276,0.910743877 11.63,0.971153088 C5.2759622,3.36741946 1.05139128,9.4264795 1,16.2171531 C0.997803298,16.4917321 0.77458779,16.7131531 0.5,16.7131531 Z"></path></symbol>
    <symbol id="smart-management" viewBox="0 0 37 38"><path fill="url(#gradientPurple)" d="M12.499,25.001 C11.2763081,25.0004487 10.2851034,24.0096915 10.284,22.787 L10.284,21.299 C9.42566472,21.0838922 8.60403514,20.7425014 7.846,20.286 L6.792,21.339 C5.91579462,22.1760844 4.53620538,22.1760844 3.66,21.339 C2.79707801,20.4737031 2.79707801,19.0732969 3.66,18.208 L4.715,17.154 C4.25778972,16.3957305 3.91572513,15.5737645 3.7,14.715 L2.214,14.715 C0.991241564,14.715 0,13.7237584 0,12.501 C0,11.2782416 0.991241564,10.287 2.214,10.287 L3.7,10.287 C3.91572513,9.42823549 4.25778972,8.60626946 4.715,7.848 L3.66,6.793 C2.79609153,5.92850161 2.79609153,4.52749839 3.66,3.663 C4.53620538,2.82591558 5.91579462,2.82591558 6.792,3.663 L7.846,4.716 C8.60378656,4.25900689 9.42549166,3.91758472 10.284,3.703 L10.284,2.215 C10.284,0.991689279 11.2756893,0 12.499,0 C13.7223107,0 14.714,0.991689279 14.714,2.215 L14.714,3.703 C15.5725083,3.91758472 16.3942134,4.25900689 17.152,4.716 L18.206,3.663 C19.0822054,2.82591558 20.4617946,2.82591558 21.338,3.663 C22.2008069,4.52795417 22.2008069,5.92804583 21.338,6.793 L20.001,8.13 C19.8048106,8.3194861 19.4929576,8.31677619 19.3000907,8.12390929 C19.1072238,7.93104239 19.1045139,7.61918944 19.294,7.423 L20.631,6.086 C21.103976,5.61177374 21.103976,4.84422626 20.631,4.37 C20.1502758,3.91107775 19.3937242,3.91107775 18.913,4.37 L17.577,5.706 C17.4087379,5.87422053 17.1452412,5.9005702 16.947,5.769 C16.0877728,5.19695477 15.125628,4.79722147 14.114,4.592 C13.8811669,4.54447314 13.7139515,4.33963431 13.714,4.102 L13.714,2.215 C13.714,1.54397403 13.170026,1 12.499,1 C11.827974,1 11.284,1.54397403 11.284,2.215 L11.284,4.102 C11.2840485,4.33963431 11.1168331,4.54447314 10.884,4.592 C9.87237198,4.79722147 8.91022718,5.19695477 8.051,5.769 C7.85275882,5.9005702 7.5892621,5.87422053 7.421,5.706 L6.085,4.37 C5.60427584,3.91107775 4.84772416,3.91107775 4.367,4.37 C3.89402398,4.84422626 3.89402398,5.61177374 4.367,6.086 L5.704,7.423 C5.87254097,7.59101011 5.89931112,7.85452873 5.768,8.053 C5.19521879,8.91194549 4.79511169,9.87417251 4.59,10.886 C4.54247314,11.1188331 4.33763431,11.2860485 4.1,11.286 L2.214,11.286 C1.54352631,11.286 1,11.8295263 1,12.5 C1,13.1704737 1.54352631,13.714 2.214,13.714 L4.1,13.714 C4.33763431,13.7139515 4.54247314,13.8811669 4.59,14.114 C4.79528306,15.125775 5.19537684,16.08797 5.768,16.947 C5.89931112,17.1454713 5.87254097,17.4089899 5.704,17.577 L4.367,18.913 C3.8939088,19.3875689 3.8939088,20.1554311 4.367,20.63 C4.84772416,21.0889222 5.60427584,21.0889222 6.085,20.63 L7.421,19.294 C7.5892621,19.1257795 7.85275882,19.0994298 8.051,19.231 C8.91022718,19.8030452 9.87237198,20.2027785 10.884,20.408 C11.1168331,20.4555269 11.2840485,20.6603657 11.284,20.898 L11.284,22.785 C11.284,23.456026 11.827974,24 12.499,24 C13.170026,24 13.714,23.456026 13.714,22.785 L13.714,20.898 C13.714,20.6218576 13.9378576,20.398 14.214,20.398 C14.4901424,20.398 14.714,20.6218576 14.714,20.898 L14.714,22.785 C14.7140001,24.0084726 13.7224725,25.0004479 12.499,25.001 Z M12.499,15.5730002 C11.2564011,15.5734045 10.1359315,14.8251922 9.66012919,13.6772966 C9.18432686,12.5294009 9.44690725,11.207915 10.3254144,10.3291218 C11.2039215,9.45032857 12.5253219,9.18731795 13.6733724,9.66274653 C14.8214229,10.1381751 15.57,11.258401 15.57,12.501 C15.5683472,14.1965434 14.1945427,15.5707952 12.499,15.5730002 Z M12.499,10.4299998 C11.6607724,10.4295955 10.9048759,10.9342738 10.5839132,11.7086179 C10.2629505,12.4829619 10.4401585,13.3744085 11.032875,13.967125 C11.6255915,14.5598415 12.5170381,14.7370495 13.2913821,14.4160868 C14.0657262,14.0951241 14.5704045,13.3392276 14.5700002,12.501 C14.5688975,11.3576753 13.6423247,10.4311025 12.499,10.4299998 Z M23.71,23.131 C20.3886897,23.1304477 17.6966319,20.4376437 17.697,17.1163334 C17.6973682,13.7950232 20.390023,11.102816 23.7113333,11.1030001 C27.0326436,11.1031841 29.725,13.7956897 29.725,17.117 C29.7205917,20.4370031 27.0300038,23.1271437 23.71,23.131 Z M23.71,12.102 C20.9411047,12.1025523 18.696816,14.3474379 18.6970001,17.1163333 C18.6971842,19.8852286 20.9417714,22.1298158 23.7106667,22.1299999 C26.4795621,22.130184 28.7244477,19.8858953 28.725,17.117 C28.7216939,14.3486626 26.4783374,12.1053061 23.71,12.102 Z M35.184,37.643 L13.155,37.643 C12.6366741,37.6420448 12.143458,37.4196487 11.799575,37.0318251 C11.4556921,36.6440015 11.2939188,36.1277152 11.355,35.613 C12.104,29.398 17.494,24.888 24.171,24.888 C30.848,24.888 36.239,29.399 36.987,35.613 C37.0480812,36.1277152 36.8863079,36.6440015 36.542425,37.0318251 C36.198542,37.4196487 35.7053259,37.6420448 35.187,37.643 L35.184,37.643 Z M24.169,25.888 C18.006,25.888 13.033,30.028 12.345,35.732 C12.3162443,35.9626711 12.3892433,36.194443 12.545,36.367 C12.6991813,36.5418684 12.9208683,36.6423374 13.154,36.643 L35.183,36.643 C35.4154974,36.6419497 35.6365634,36.5420124 35.7909449,36.3681662 C35.9453264,36.19432 36.0184357,35.962992 35.992,35.732 C35.306,30.028 30.333,25.888 24.169,25.888 Z"></path></symbol>
    <symbol id="smart-cetech" viewBox="0 0 37 37"><path fill="url(#gradientPurple)" d="M28.0500091,22 L26.5,22 C25.6715729,22 25,22.6715729 25,23.5 L25,34.75309 C31.4464668,32.1726611 36,25.8680979 36,18.5 C35.9915991,11.1366491 31.4413798,4.83756215 25,2.25339724 L25,10.5 C25,11.3284271 25.6715729,12 26.5,12 L28.0500091,12 C28.2816442,10.8588798 29.290521,10 30.5,10 C31.8807119,10 33,11.1192881 33,12.5 C33,13.1630412 32.7366079,13.798926 32.267767,14.267767 C31.798926,14.7366079 31.1630412,15 30.5,15 C29.290521,15 28.2816442,14.1411202 28.0500091,13 L26.5,13 C25.1192881,13 24,11.8807119 24,10.5 L24,1.88733801 C22.2705432,1.31367279 20.4215087,1.00219225 18.5,1 C9.68382023,1 2.3902963,7.51926464 1.17722215,16 L14.5,16 C15.8807119,16 17,17.1192881 17,18.5 L17,35.9366135 C17.4944262,35.9785851 17.9947123,36 18.5,36 C19.0052877,36 19.5055738,35.9785851 20,35.9366135 L20,12.5 C20,11.6715729 19.3284271,11 18.5,11 L15.9499909,11 C15.7183558,12.1411202 14.709479,13 13.5,13 C12.1192881,13 11,11.8807119 11,10.5 C11,9.11928813 12.1192881,8 13.5,8 C14.709479,8 15.7183558,8.85887984 15.9499909,10 L18.5,10 C19.8807119,10 21,11.1192881 21,12.5 L21,35.8227779 C22.0317679,35.675195 23.0345037,35.4376142 24,35.1182427 L24,23.5 C24,22.1192881 25.1192881,21 26.5,21 L28.0500091,21 C28.2816442,19.8588798 29.290521,19 30.5,19 C31.8807119,19 33,20.1192881 33,21.5 C33,22.1630412 32.7366079,22.798926 32.267767,23.267767 C31.798926,23.7366079 31.1630412,24 30.5,24 C29.290521,24 28.2816442,23.1411202 28.0500091,22 Z M8.94999094,23 C8.71835578,24.1411202 7.70947896,25 6.5,25 C5.11928813,25 4,23.8807119 4,22.5 C4,21.1192881 5.11928813,20 6.5,20 C7.70947896,20 8.71835578,20.8588798 8.94999094,22 L10.5,22 C11.8807119,22 13,23.1192881 13,24.5 L13,35.1182427 C13.9654963,35.4376142 14.9682321,35.675195 16,35.8227779 L16,18.5 C16,17.6715729 15.3284271,17 14.5,17 L1.0633865,17 C1.02141486,17.4944262 1,17.9947123 1,18.5 C1,25.8680979 5.55353323,32.1726611 12,34.75309 L12,24.5 C12,23.6715729 11.3284271,23 10.5,23 L8.94999094,23 Z M24.5162677,1.00025964 C24.6230473,1.00367278 24.7213735,1.04056624 24.8010935,1.10078707 C31.9161402,3.67801032 37,10.4953056 37,18.5 C36.990941,26.4941377 31.9179004,33.3016813 24.8160273,35.8874818 C24.7298944,35.9578155 24.6198736,36 24.5,36 C24.4993192,36 24.4986386,35.9999986 24.4979584,35.9999959 C22.6171364,36.6459594 20.5994902,36.9976208 18.5,37 C16.393839,37 14.3698816,36.648045 12.4837335,35.9997408 C12.3769527,35.9963272 12.2786265,35.9594338 12.1989065,35.8992129 C5.08385983,33.3219897 0,26.5046944 0,18.5 C0,8.28273213 8.28273213,0 18.5,0 C20.606161,0 22.6301184,0.351955029 24.5162665,1.00025921 Z M30.5,11 C29.6715729,11 29,11.6715729 29,12.5 C29,13.3284271 29.6715729,14 30.5,14 C31.3284271,14 32,13.3284271 32,12.5 C32,11.6715729 31.3284271,11 30.5,11 Z M13.5,9 C12.6715729,9 12,9.67157288 12,10.5 C12,11.3284271 12.6715729,12 13.5,12 C14.3284271,12 15,11.3284271 15,10.5 C15,9.67157288 14.3284271,9 13.5,9 Z M6.5,21 C5.67157288,21 5,21.6715729 5,22.5 C5,23.3284271 5.67157288,24 6.5,24 C7.32842712,24 8,23.3284271 8,22.5 C8,21.6715729 7.32842712,21 6.5,21 Z M30.5,20 C29.6715729,20 29,20.6715729 29,21.5 C29,22.3284271 29.6715729,23 30.5,23 C31.3284271,23 32,22.3284271 32,21.5 C32,20.6715729 31.3284271,20 30.5,20 Z"></path></symbol>

    <symbol id="translate" viewBox="0 0 24 24"><path fill="currentColor" d="m11.9 21l4.358-11h1.023l4.358 11h-1.081l-1.19-3.05H14.17L12.981 21zm-7.88-2.884l-.708-.708l4.896-4.916q-.856-.875-1.703-2.154T5.25 8h1.08q.366.84 1.107 1.93q.74 1.091 1.479 1.855q1.305-1.326 2.318-2.909Q12.246 7.292 12.58 6H2.385V5H8.5V3.77h1V5h6.116v1h-1.997q-.448 1.57-1.527 3.344q-1.079 1.775-2.469 3.16l2.535 2.604l-.385 1.03l-2.857-2.932zm10.488-1.07h4.523l-2.262-5.811z"/></symbol>
</svg>
<header class="page-header light" id="pageHeader">
    <div class="page-header-wrapper">
        <div class="container h-100">
            <div class="d-flex align-items-center justify-content-between h-100">
                <a href="/" class="logo">
                    <img src="/themes/modern/images/logo-dark.svg" alt="Resecurity"/>
                </a>

                <nav class="main-nav d-none d-lg-inline-block">
                    <ul class="main-nav-list">
                        <li class="main-nav-item">
                            <a class="main-nav-link" href="/platform">Solutions</a>
                        </li>
                        <li class="main-nav-item">
                            <span class="main-nav-link">Products</span>
                            <div class="main-nav-submenu">
                                <div class="container">
                                    <ul class="row">
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pt-5" href="/epp">
                                                <span class="text-lg-size text-light mb-1">Endpoint Protection</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Platform</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pt-5" href="/risk">
                                                <span class="text-lg-size text-light mb-1">Risk™</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Digital Risk Monitoring</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pt-5" href="/deception">
                                                <span class="text-lg-size text-light mb-1">Deception & Honeypot</span>
                                                <span class="text-light text-small text-uppercase opacity-5">MirageX</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pt-5" href="/context">
                                                <span class="text-lg-size text-light mb-1">Context™</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Cyber Threat Intelligence</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pt-4" href="/easm">
                                                <span class="text-lg-size text-light mb-1">EASM</span>
                                                <span class="text-light text-small text-uppercase opacity-5">External Attack Surface<br />Management</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pb-5" href="/vapt">
                                                <span class="text-lg-size text-light mb-1">VAPT</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Vulnerability Assessment &<br />Penetration Testing</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pb-5" href="/cyber-fusion">
                                                <span class="text-lg-size text-light mb-1">Cyber Fusion Center</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Cyber Fusion Center</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pb-5" href="/idp">
                                                <span class="text-lg-size text-light mb-1">Identity Protection</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Secure Your Digital Identity</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pb-5" href="/threat-hunting">
                                                <span class="text-lg-size text-light mb-1">Threat Hunting</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Protect your ecosystem with Hunter</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pb-5" href="/fraud-prevention">
                                                <span class="text-lg-size text-light mb-1">Fraud Prevention</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Fraud Prevention and Risk Intelligence</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3">
                                            <a class="main-nav-sublink pb-5" href="/insider">
                                                <span class="text-lg-size text-light mb-1">Insider Threat Protection</span>
                                                <span class="text-light text-small text-uppercase opacity-5">Neutralize Insider Threats</span>
                                            </a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </li>
                        <li class="main-nav-item">
                            <span class="main-nav-link">Services</span>
                            <div class="main-nav-submenu">
                                <div class="container">
                                    <ul class="row">
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/arbs">
                                                <span class="text-medium-size text-light">ARBS</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/asset-tracing">
                                                <span class="text-medium-size text-light">Asset Tracing</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/brand-protection">
                                                <span class="text-medium-size text-light">Brand Protection</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/compromise-assessment">
                                                <span class="text-medium-size text-light">Compromise Assessment</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/counterparty-assessment">
                                                <span class="text-medium-size text-light">Counterparty Assessment</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/cyber-awareness-training">
                                                <span class="text-medium-size text-light">Cyber Awareness Training</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/digital-forensics">
                                                <span class="text-medium-size text-light">Digital Forensics</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/ep">
                                                <span class="text-medium-size text-light">Executive Protection</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/incident-response">
                                                <span class="text-medium-size text-light">Incident Response</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/intelligence-services">
                                                <span class="text-medium-size text-light">Intelligence Services</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/managed-threat-detection">
                                                <span class="text-medium-size text-light">Managed Threat Detection</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/red-teaming">
                                                <span class="text-medium-size text-light">Red Teaming</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/stress-testing">
                                                <span class="text-medium-size text-light">Stress Testing</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-3 pb-2">
                                            <a class="main-nav-sublink" href="/services/vciso">
                                                <span class="text-medium-size text-light">vCISO</span>
                                            </a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </li>
                        <li class="main-nav-item">
                            <a class="main-nav-link" href="/advisories">Advisories</a>
                        </li>
                        <li class="main-nav-item">
                            <span class="main-nav-link">Press</span>
                            <div class="main-nav-submenu">
                                <div class="container">
                                    <ul class="row justify-content-between">
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/news">
                                                <span class="text-medium-size text-light">News</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/blog">
                                                <span class="text-medium-size text-light">Blog</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/resources">
                                                <span class="text-medium-size text-light">Resources</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/awards">
                                                <span class="text-medium-size text-light">Awards</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/insights">
                                                <span class="text-medium-size text-light">Insights</span>
                                            </a>
                                        </li>
                                    </ul>
                                </div>
                            </div>
                        </li>
                        <li class="main-nav-item">
                            <span class="main-nav-link">About</span>
                            <div class="main-nav-submenu">
                                <div class="container">
                                    <ul class="row justify-content-between">
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/about-resecurity">
                                                <span class="text-medium-size text-light">Company</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/team">
                                                <span class="text-medium-size text-light">Team</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/advisory-board">
                                                <span class="text-medium-size text-light">Advisory Board</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/partners">
                                                <span class="text-medium-size text-light">Partners</span>
                                            </a>
                                        </li>
                                        <li class="col-lg-2">
                                            <a class="main-nav-sublink" href="/events/past">
                                                <span class="text-medium-size text-light">Events</span>
                                            </a>
                                        </li>
                                                                            </ul>
                                </div>
                            </div>
                        </li>
                    </ul>
                </nav>

                <nav class="mobile-nav d-lg-none">
                    <button class="hamburger hamburger--squeeze" type="button" id="triggerMobileMenu">
                      <span class="hamburger-box">
                        <span class="hamburger-inner"></span>
                      </span>
                    </button>
                </nav>

                <div class="button-group d-none d-lg-inline-block text-right text-wrap-nowrap">

                    
                        <button class="button light outline small" data-dialog-contact>Contact</button>
                        <button class="button light outline small" data-dialog-trial>Free Trial</button>

                    
                    
<div class="dropdown" data-dropdown>
    <button class="button light outline circle m-0" data-dropdown-toggle title="Language">
        <svg class="icon translate">
            <use xlink:href="#translate"></use>
        </svg>
    </button>
    <div class="dropdown-menu header-menu text-left" data-dropdown-menu>
        <ul class="dropdown-list">
                            <li class="dropdown-item">
                    <a class="dropdown-link active" href="/en/site/error">English</a>                </li>
                            <li class="dropdown-item">
                    <a class="dropdown-link" href="/ar/site/error">Arabic</a>                </li>
                            <li class="dropdown-item">
                    <a class="dropdown-link" href="/pt-br/site/error">Portuguese</a>                </li>
                            <li class="dropdown-item">
                    <a class="dropdown-link" href="/fr/site/error">French</a>                </li>
                            <li class="dropdown-item">
                    <a class="dropdown-link" href="/jp/site/error">Japanese</a>                </li>
                            <li class="dropdown-item">
                    <a class="dropdown-link" href="/es/site/error">Spanish</a>                </li>
                            <li class="dropdown-item">
                    <a class="dropdown-link" href="/it/site/error">Italian</a>                </li>
                    </ul>
    </div>
</div>

                </div>
            </div>
        </div>
    </div>
</header>
    <main class="page-main">

        
<div class="news">
    <div class="news-body">
        <div class="container">
            <div class="row no-gutters">
                <div class="col py-20">
                    <a class="link icon mb-2" href="/">
                        <svg class="icon" width="16" height="16">
                            <use xlink:href="#arrow-left"></use>
                        </svg>
                        <span>Home</span>
                    </a>

                    <br><br>

                    <div class="text-h1-size mb-2">Not Found (#404)</div>
                    <div class="text-h4-size">Page not found.</div>

                    <br><br><br><br>

                    <p>
                        The above error occurred while the Web server was processing your request.                    </p>
                    <p>
                        Please contact us if you think this is a server error. Thank you.                    </p>
                </div>
            </div>
        </div>
    </div>
</div>


<div class="page-section dark lighter py-8 py-sm-10 order-2 order-sm-1">
    <div class="container">
        <div class="row align-items-center">
            <div class="col-lg-7 col-12">
                <div class="row">
                    <div class="col-xxl-6 col-xl-7 col-lg-8 mb-10 mb-lg-0">
                        <div class="text-h3-size mb-2">Newsletter</div>
                        <p>Keep up to date with the latest cybersecurity news and developments.</p>
                    </div>
                </div>
            </div>
            <div class="col-lg-5 col-12">
                <form id="newsletter" class="form row no-gutters" action="/subscribe" method="post">
<input type="hidden" name="_csrf-frontend" value="F20XP7dhaaJfxhwFyh1mleGpzn_uwTShxyQqE5CgmTZUDHVY8Q8ulTiqWGOmVVXS1Pu-Cp6NRvixRmgrqO31QQ==">
                    <div class="form-group col-sm-8 col-12 mb-3 mb-sm-0 field-subscribeform-email required">
<input type="text" id="subscribeform-email" class="form-control" name="SubscribeForm[email]" maxlength="255" aria-required="true">
<label class="form-label" for="subscribeform-email">Email Address</label>

<div class="help-block"></div>

</div>
                    
                    <div class="form-group col-sm-4 col-12">
                        <button type="submit" class="button light outline w-xs-100">Subscribe</button>                    </div>

                </form>                <div class="row">
                    <div class="col">
                        <p class="opacity-6 pt-3">
                            By subscribing, I understand and agree that my personal data will be collected and processed according to the <a class="link" href="/privacy-policy">Privacy</a> and <a class="link" href="/cookies-policy">Cookies Policy</a>                        </p>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

        
<div class="dialogbox architecture" id="dialogArch">
    <div class="dialogbox-wrapper">
        <div class="dialogbox-panel" data-animate>
            <div class="px-lg-18 px-xl-20 px-xxl-24">
                <div class="text-h3-size mb-lg-7 mb-xl-10 mb-xxl-12">Cloud Architecture</div>
                <img width="100%" height="auto" src="/themes/modern/images/platform/architecture.svg" alt="Cloud Architecture">
            </div>
            <span class="dialogbox-close" data-modal-close>
                <svg class="icon" width="18" height="18">
                    <use xlink:href="#close"></use>
                </svg>
            </span>
        </div>
    </div>
    <div class="dialogbox-overlay" data-modal-close data-animate></div>
</div>        

<div class="dialogbox" id="dialogContact">
    <div class="dialogbox-wrapper">
        <div class="dialogbox-info" data-animate>
            <div class="dialogbox-info-top">
                <p class="text-lg-size mb-3">Resecurity</p>
                <p class="mb-06">
                    <a class="opacity-7" href="mailto:contact@resecurity.com">contact@resecurity.com</a>
                </p>
                <p>
                    <a class="opacity-7" href="tel:+18882738276">(+1) 888 273 82 76</a>
                </p>
            </div>
            <div class="dialogbox-info-bottom">
                <address class="mb-3 opacity-7">
                    445 S. Figueroa Street <br /> Los Angeles, CA 90071
                </address>
                <a class="link icon" href="https://www.google.com/maps/place/445+S+Figueroa+St,+Los+Angeles,+CA+90071">
                    <svg class="icon" width="16" height="12">
                        <use xlink:href="#arrow-right-bottom"></use>
                    </svg>
                    <span>Google Maps</span>
                </a>
            </div>
        </div>
        <div class="dialogbox-panel" data-animate>
            <div class="dialogbox-panel-scroll">
                <div class="contactbox">
                    <div class="text-h2-size text-transform-none mb-5 pr-5 mb-xxl-10">
                        Contact us by filling out <span class="text-gradient">the form</span>                    </div>

                    <form id="contact-form" class="contactbox-form" action="/contact" method="post">
<input type="hidden" name="_csrf-frontend" value="F20XP7dhaaJfxhwFyh1mleGpzn_uwTShxyQqE5CgmTZUDHVY8Q8ulTiqWGOmVVXS1Pu-Cp6NRvixRmgrqO31QQ==">
                        <div class="contactbox-form-top">

                            
<div class="field-contactform-middlename" style="overflow: hidden; height: 0;">
<input type="text" id="contactform-middlename" class="form-control" name="ContactForm[middlename]" value="">


<div class="help-block"></div>

</div>
<div class="form-group field-contactform-time">
<input type="hidden" id="contactform-time" class="form-control" name="ContactForm[time]" value="1788519394">


<div class="help-block"></div>

</div>
                            <div class="row">
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-contactform-firstname required">
<input type="text" id="contactform-firstname" class="form-control" name="ContactForm[firstname]" maxlength="512" aria-required="true">
<label class="form-label" for="contactform-firstname">First Name *</label>

<div class="help-block"></div>

</div>                                </div>
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-contactform-lastname required">
<input type="text" id="contactform-lastname" class="form-control" name="ContactForm[lastname]" maxlength="512" aria-required="true">
<label class="form-label" for="contactform-lastname">Last Name *</label>

<div class="help-block"></div>

</div>                                </div>
                            </div>
                            <div class="row">
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-contactform-company required">
<input type="text" id="contactform-company" class="form-control" name="ContactForm[company]" maxlength="512" aria-required="true">
<label class="form-label" for="contactform-company">Company *</label>

<div class="help-block"></div>

</div>                                </div>
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-contactform-email required">
<input type="text" id="contactform-email" class="form-control" name="ContactForm[email]" maxlength="255" aria-required="true">
<label class="form-label" for="contactform-email">Email Address *</label>

<div class="help-block"></div>

</div>                                </div>
                            </div>
                            <div class="form-group field-contactform-message required">
<input type="text" id="contactform-message" class="form-control" name="ContactForm[message]" maxlength="4096" aria-required="true">
<label class="form-label" for="contactform-message">Message *</label>

<div class="help-block"></div>

</div>
                                                            <div class="mt-3 mb-3 d-flex justify-content-start">
                                    <div class="form-group field-contactform-recaptcha">
<input type="hidden" id="contactform-recaptcha" class="form-control" name="ContactForm[reCaptcha]"><div id="contactform-recaptcha-recaptcha-contact-form" class="g-recaptcha" data-sitekey="6LdwM9QhAAAAANEbNo90KQx8f9o8GzXGJ82x0kC4" data-input-id="contactform-recaptcha" data-form-id="contact-form"></div>


<div class="help-block"></div>

</div>                                </div>
                            
                        </div>

                        <div class="contactbox-form-bottom">
                            <div class="form-group">
                                <button type="submit" class="button dark outline w-xs-100 mb-4">Send</button>                            </div>
                        </div>

                    </form>
                    <span class="dialogbox-close" data-modal-close>
                        <svg class="icon" width="18" height="18">
                            <use xlink:href="#close"></use>
                        </svg>
                    </span>
                </div>
            </div>
        </div>
    </div>
    <div class="dialogbox-overlay" data-modal-close data-animate></div>
</div>        
<div class="dialogbox" id="dialogTrial">
    <div class="dialogbox-wrapper">
        <div class="dialogbox-panel" data-animate>
            <div class="dialogbox-panel-scroll">
                <div class="contactbox">
                    <div class="text-h2-size text-transform-none mb-5 mb-xxl-10 pr-lg-5 pr-xxl-10">
                        Try Resecurity products today with a <span class="text-gradient">free trial</span>                    </div>

                    <form id="request-trial-form" class="contactbox-form" action="/request-trial" method="post">
<input type="hidden" name="_csrf-frontend" value="F20XP7dhaaJfxhwFyh1mleGpzn_uwTShxyQqE5CgmTZUDHVY8Q8ulTiqWGOmVVXS1Pu-Cp6NRvixRmgrqO31QQ==">
                        <div class="contactbox-form-top">

                            
<div class="field-requesttrialform-middlename" style="overflow: hidden; height: 0;">
<input type="text" id="requesttrialform-middlename" class="form-control" name="RequestTrialForm[middlename]" value="">


<div class="help-block"></div>

</div>
<div class="form-group field-requesttrialform-time">
<input type="hidden" id="requesttrialform-time" class="form-control" name="RequestTrialForm[time]" value="1788519394">


<div class="help-block"></div>

</div>
                            <div class="row">
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-requesttrialform-firstname required">
<input type="text" id="requesttrialform-firstname" class="form-control" name="RequestTrialForm[firstname]" maxlength="512" aria-required="true">
<label class="form-label" for="requesttrialform-firstname">First Name *</label>

<div class="help-block"></div>

</div>                                </div>
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-requesttrialform-lastname required">
<input type="text" id="requesttrialform-lastname" class="form-control" name="RequestTrialForm[lastname]" maxlength="512" aria-required="true">
<label class="form-label" for="requesttrialform-lastname">Last Name *</label>

<div class="help-block"></div>

</div>                                </div>
                            </div>
                            <div class="row">
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-requesttrialform-email required">
<input type="text" id="requesttrialform-email" class="form-control" name="RequestTrialForm[email]" maxlength="255" aria-required="true">
<label class="form-label" for="requesttrialform-email">Email Address *</label>

<div class="help-block"></div>

</div>                                </div>
                                <div class="col-lg-12 col-sm-6 col-12">
                                    <div class="form-group mb-4 field-requesttrialform-company required">
<input type="text" id="requesttrialform-company" class="form-control" name="RequestTrialForm[company]" maxlength="512" aria-required="true">
<label class="form-label" for="requesttrialform-company">Company *</label>

<div class="help-block"></div>

</div>                                </div>
                            </div>

                            <div class="form-group mb-4 field-requesttrialform-location">
<input type="text" id="requesttrialform-location" class="form-control" name="RequestTrialForm[location]" maxlength="512">
<label class="form-label" for="requesttrialform-location">Location</label>

<div class="help-block"></div>

</div>
                                                            <div class="mt-3  mb-3 d-flex justify-content-start">
                                    <div class="form-group field-requesttrialform-recaptcha">
<input type="hidden" id="requesttrialform-recaptcha" class="form-control" name="RequestTrialForm[reCaptcha]"><div id="requesttrialform-recaptcha-recaptcha-request-trial-form" class="g-recaptcha" data-sitekey="6LdwM9QhAAAAANEbNo90KQx8f9o8GzXGJ82x0kC4" data-input-id="requesttrialform-recaptcha" data-form-id="request-trial-form"></div>


<div class="help-block"></div>

</div>                                </div>
                                                    </div>

                        <div class="contactbox-form-bottom">
                            <div class="form-group">
                                <button type="submit" class="button dark outline w-xs-100 mb-4">Send</button>                            </div>
                        </div>

                    </form>
                    <span class="dialogbox-close" data-modal-close>
                        <svg class="icon" width="18" height="18">
                            <use xlink:href="#close"></use>
                        </svg>
                    </span>
                </div>
            </div>
        </div>
    </div>
    <div class="dialogbox-overlay" data-modal-close data-animate></div>
</div>        
<nav class="mobile-nav-dialog d-lg-none" id="mobileMenu">
    <div class="mobile-nav-dialog-wrap">
        <div class="mobile-nav-dialog-left d-none d-sm-block"></div>
        <div class="mobile-nav-dialog-right">
            <div class="mobile-nav-dialog-right-wrapper">
                <ul class="mobile-nav-menu">
                    <li class="mobile-nav-menu-item">
                        <a href="/platform">Solutions</a>
                    </li>
                    <li class="mobile-nav-menu-item">
                        <div class="mobile-nav-submenu" data-submenu>
                            <span>Products</span>
                            <ul>
                                <li>
                                    <a href="/epp">Endpoint Protection</a>
                                </li>
                                <li>
                                    <a href="/risk">Risk™</a>
                                </li>
                                <li>
                                    <a href="/context">Context™</a>
                                </li>
                                <li>
                                    <a href="/easm">EASM</a>
                                </li>
                                <li>
                                    <a href="/vapt">VAPT</a>
                                </li>
                                <li>
                                    <a href="/cyber-fusion">Cyber Fusion Center</a>
                                </li>
                                <li>
                                    <a href="/idp">Identity Protection</a>
                                </li>
                                <li>
                                    <a href="/threat-hunting">Threat Hunting</a>
                                </li>
                                <li>
                                    <a href="/fraud-prevention">Fraud Prevention</a>
                                </li>
                                <li>
                                    <a href="/insider">Insider Threat Protection</a>
                                </li>
                            </ul>
                            <div class="mobile-nav-arrow">
                                <svg class="icon" width="20" height="20">
                                    <use xlink:href="#arrow-right"></use>
                                </svg>
                            </div>
                        </div>
                    </li>
                    <li class="mobile-nav-menu-item">
                        <div class="mobile-nav-submenu" data-submenu>
                            <span>Services</span>
                            <ul>
                                <li>
                                    <a href="/services/arbs">ARBS</a>
                                </li>
                                <li>
                                    <a href="/services/asset-tracing">Asset Tracing</a>
                                </li>
                                <li>
                                    <a href="/services/brand-protection">Brand Protection</a>
                                </li>
                                <li>
                                    <a href="/services/compromise-assessment">Compromise Assessment</a>
                                </li>
                                <li>
                                    <a href="/services/counterparty-assessment">Counterparty Assessment</a>
                                </li>
                                <li>
                                    <a href="/services/cyber-awareness-training">Cyber Awareness Training</a>
                                </li>
                                <li>
                                    <a href="/services/digital-forensics">Digital Forensics</a>
                                </li>
                                <li>
                                    <a href="/services/ep">Executive Protection</a>
                                </li>
                                <li>
                                    <a href="/services/intelligence-services">Intelligence Services</a>
                                </li>
                                <li>
                                    <a href="/services/managed-threat-detection">Managed Threat Detection</a>
                                </li>
                                <li>
                                    <a href="/services/red-teaming">Red Teaming</a>
                                </li>
                                <li>
                                    <a href="/services/stress-testing">Stress Testing</a>
                                </li>
                                <li>
                                    <a href="/services/vciso">vCISO</a>
                                </li>
                            </ul>
                            <div class="mobile-nav-arrow">
                                <svg class="icon" width="20" height="20">
                                    <use xlink:href="#arrow-right"></use>
                                </svg>
                            </div>
                        </div>
                    </li>
                    <li class="mobile-nav-menu-item">
                        <div class="mobile-nav-submenu" data-submenu>
                            <span>Compliance</span>
                            <ul>
                                <li>
                                    <a href="/compliance/cmmc">CMMC</a>
                                </li>
                                <li>
                                    <a href="/compliance/cmmi">CMMI</a>
                                </li>
                                <li>
                                    <a href="/compliance/dfars">DFARS</a>
                                </li>
                                <li>
                                    <a href="/compliance/dora">DORA</a>
                                </li>
                                <li>
                                    <a href="/compliance/dpa-philippines">DPA Philippines</a>
                                </li>
                                <li>
                                    <a href="/compliance/dpdpa-india">DPDPA India</a>
                                </li>
                                <li>
                                    <a href="/compliance/gdpr">GDPR</a>
                                </li>
                                <li>
                                    <a href="/compliance/hipaa">HIPAA</a>
                                </li>
                                <li>
                                    <a href="/compliance/irdai">IRDAI</a>
                                </li>
                                <li>
                                    <a href="/compliance/iso-27001">ISO 27001</a>
                                </li>
                                <li>
                                    <a href="/compliance/lgpd">LGPD</a>
                                </li>
                                <li>
                                    <a href="/compliance/nca-ecc">NCA ECC</a>
                                </li>
                                <li>
                                    <a href="/compliance/nis2">NIS2</a>
                                </li>
                                <li>
                                    <a href="/compliance/pci-dss">PCI DSS</a>
                                </li>
                                <li>
                                    <a href="/compliance/pdpl-saudi-arabi">PDPL Saudi Arabia</a>
                                </li>
                                <li>
                                    <a href="/compliance/rbi-india">RBI India</a>
                                </li>
                                <li>
                                    <a href="/compliance/sama">SAMA</a>
                                </li>
                                <li>
                                    <a href="/compliance/sebi">SEBI</a>
                                </li>
                            </ul>
                            <div class="mobile-nav-arrow">
                                <svg class="icon" width="20" height="20">
                                    <use xlink:href="#arrow-right"></use>
                                </svg>
                            </div>
                        </div>
                    </li>
                    <li class="mobile-nav-menu-item">
                        <a href="/advisories">Advisories</a>
                    </li>
                    <li class="mobile-nav-menu-item">
                        <div class="mobile-nav-submenu" data-submenu>
                            <span>Press</span>
                            <ul>
                                <li>
                                    <a href="/news">News</a>
                                </li>
                                <li>
                                    <a href="/blog">Blog</a>
                                </li>
                                <li>
                                    <a href="/resources">Resources</a>
                                </li>
                                <li>
                                    <a href="/awards">Awards</a>
                                </li>
                                <li>
                                    <a href="/insights">Insights</a>
                                </li>
                            </ul>
                            <div class="mobile-nav-arrow">
                                <svg class="icon" width="20" height="20">
                                    <use xlink:href="#arrow-right"></use>
                                </svg>
                            </div>
                        </div>
                    </li>
                    <li class="mobile-nav-menu-item">
                        <div class="mobile-nav-submenu" data-submenu>
                            <span>About</span>
                            <ul>
                                <li>
                                    <a href="/about-resecurity">Company</a>
                                </li>
                                <li>
                                    <a href="/team">Team</a>
                                </li>
                                <li>
                                    <a href="/advisory-board">Advisory Board</a>
                                </li>
                                <li>
                                    <a href="/partners">Partners</a>
                                </li>
                                <li>
                                    <a href="/events/past">Events</a>
                                </li>
                            </ul>
                            <div class="mobile-nav-arrow">
                                <svg class="icon" width="20" height="20">
                                    <use xlink:href="#arrow-right"></use>
                                </svg>
                            </div>
                        </div>
                    </li>
                    <li class="mobile-nav-menu-item">
                        <div class="mobile-nav-submenu" data-submenu>
                            <span>Language</span>
                            <ul>
                                                                    <li>
                                        <a href="/en/site/error">English</a>                                    </li>
                                                                    <li>
                                        <a href="/ar/site/error">Arabic</a>                                    </li>
                                                                    <li>
                                        <a href="/pt-br/site/error">Portuguese</a>                                    </li>
                                                                    <li>
                                        <a href="/fr/site/error">French</a>                                    </li>
                                                                    <li>
                                        <a href="/jp/site/error">Japanese</a>                                    </li>
                                                                    <li>
                                        <a href="/es/site/error">Spanish</a>                                    </li>
                                                                    <li>
                                        <a href="/it/site/error">Italian</a>                                    </li>
                                                            </ul>
                            <div class="mobile-nav-arrow">
                                <svg class="icon" width="20" height="20">
                                    <use xlink:href="#arrow-right"></use>
                                </svg>
                            </div>
                        </div>
                    </li>
                </ul>
                <div class="button-group pt-10">
                    <button type="button" class="button dark outline block mb-3" data-dialog-contact>Contact</button>
                    <button type="button" class="button dark outline block" data-dialog-trial>Free Trial</button>
                </div>
            </div>
        </div>
    </div>
</nav>    </main>

    
<footer class="page-footer pt-8 pb-5 pt-sm-15 pb-sm-10">
    <div class="page-footer-wrapper container">
        <div class="page-footer-top mb-10 mb-lg-15">
            <div class="row">
                <div class="col-lg-2 col-md-5 col-sm-4">
                    <div class="row">
                                                <div class="col-12">
                            <span class="text-h5-size">Resecurity<sup class="text-sup text-uppercase">tm</sup></span>
                            <ul class="page-footer-list">
                                <li>
                                    <a href="mailto:contact@resecurity.com">contact@resecurity.com</a>
                                </li>
                                <li>
                                    <a href="tel:+18882738276">+1 (888) 273-8276</a>
                                </li>
                                <li>
                                    <a href="https://www.google.com/maps/place/445+S+Figueroa+St,+Los+Angeles,+CA+90071">
                                        445 S. Figueroa Street <br> Los Angeles, California, 90071
                                    </a>
                                </li>
                                <li>
                                    <br>
                                    <a href="tel:+966534026877">+966 53 402 6877</a>
                                </li>
                                <li>
                                    <a href="https://www.google.com/maps/search/Saud+Ibn+Abdulaziz+Ibn+Muhammad+Branch+5176,+Al+Nakheel+Dist.+12381,+Riyadh.+12381,+Riyadh/">
                                        Saud Ibn Abdulaziz Ibn Muhammad Branch 5176,<br> Al Nakheel Dist. 12381, Riyadh. 12381, Riyadh
                                    </a>
                                </li>
                            </ul>
                        </div>
                                                <div class="col-12">
                            <div class="icon-list mt-4">
                                <a class="icon-circle light" href="https://www.linkedin.com/company/resecurity/">
                                    <svg class="icon linkedin">
                                        <use xlink:href="#linkedin"></use>
                                    </svg>
                                </a>
                                <a class="icon-circle light" href="https://twitter.com/RESecurity">
                                    <svg class="icon twitter">
                                        <use xlink:href="#twitter"></use>
                                    </svg>
                                </a>
                                <a class="icon-circle light" href="https://www.facebook.com/Resecurity-110409497764628">
                                    <svg class="icon facebook">
                                        <use xlink:href="#facebook"></use>
                                    </svg>
                                </a>
                                <a class="icon-circle light" href="https://vimeo.com/user153388997">
                                    <svg class="icon vimeo">
                                        <use xlink:href="#vimeo"></use>
                                    </svg>
                                </a>
                            </div>
                        </div>

                        
<div class="col-12 mt-5 mb-5">
    <div class="dropdown" data-dropdown>
        <button class="dropdown-toggle" data-dropdown-toggle>
            Language            <span class="dropdown-arrow">▼</span>
        </button>
        <div class="dropdown-menu" data-dropdown-menu>
            <ul class="dropdown-list">
                                    <li class="dropdown-item">
                        <a class="dropdown-link active" href="/en/site/error">English</a>                    </li>
                                    <li class="dropdown-item">
                        <a class="dropdown-link" href="/ar/site/error">Arabic</a>                    </li>
                                    <li class="dropdown-item">
                        <a class="dropdown-link" href="/pt-br/site/error">Portuguese</a>                    </li>
                                    <li class="dropdown-item">
                        <a class="dropdown-link" href="/fr/site/error">French</a>                    </li>
                                    <li class="dropdown-item">
                        <a class="dropdown-link" href="/jp/site/error">Japanese</a>                    </li>
                                    <li class="dropdown-item">
                        <a class="dropdown-link" href="/es/site/error">Spanish</a>                    </li>
                                    <li class="dropdown-item">
                        <a class="dropdown-link" href="/it/site/error">Italian</a>                    </li>
                            </ul>
        </div>
    </div>
</div>

                    </div>
                </div>
                <div class="col-lg-10 col-md-7 col-sm-8">
                    <div class="page-footer-menu tiles row">
                        <div class="col-lg-2 col-md-6 col-sm-12 py-3 px-1">
                            <span class="text-base-size text-weight-regular">Platform</span>
                            <ul class="page-footer-list">
                                <li>
                                    <a href="/platform">Overview</a>
                                </li>
                                <li>
                                    <span data-dialog-trial>Free Trial</span>
                                </li>
                            </ul>
                        </div>
                        <div class="col-lg-3 col-md-6 col-sm-12 py-3 px-1">
                            <span class="text-base-size text-weight-regular">Products</span>
                            <ul class="page-footer-list">
                                <li>
                                    <a href="/context">Cyber Threat Intelligence</a>
                                </li>
                                <li>
                                    <a href="/cyber-fusion">Cyber Fusion Center</a>
                                </li>
                                <li>
                                    <a href="/risk">Digital Risk Management</a>
                                </li>
                                <li>
                                    <a href="/deception">Deception & Honeypot</a>
                                </li>
                                <li>
                                    <a href="/fraud-prevention">Fraud Prevention</a>
                                </li>
                                <li>
                                    <a href="/idp">Identity Protection</a>
                                </li>
                                <li>
                                    <a href="/epp">Endpoint Protection</a>
                                </li>
                                <li>
                                    <a href="/easm">Enterprise Attack Surface Management</a>
                                </li>
                                <li>
                                    <a href="/threat-hunting">Threat Hunting</a>
                                </li>
                                <li>
                                    <a href="/vapt">Vulnerability Assessment and Penetration Testing (VAPT)</a>
                                </li>
                                <li>
                                    <a href="/insider">Insider Threat Protection</a>
                                </li>
                            </ul>
                        </div>
                        <div class="col-lg-2 col-md-6 col-sm-12 py-3 px-1">
                            <span class="text-base-size text-weight-regular">Compliance</span>
                            <ul class="page-footer-list">
                                <li>
                                    <a href="/compliance/cmmc">CMMC</a>
                                </li>
                                <li>
                                    <a href="/compliance/cmmi">CMMI</a>
                                </li>
                                <li>
                                    <a href="/compliance/dfars">DFARS</a>
                                </li>
                                <li>
                                    <a href="/compliance/dora">DORA</a>
                                </li>
                                <li>
                                    <a href="/compliance/dpa-philippines">DPA Philippines</a>
                                </li>
                                <li>
                                    <a href="/compliance/dpdpa-india">DPDPA India</a>
                                </li>
                                <li>
                                    <a href="/compliance/gdpr">GDPR</a>
                                </li>
                                <li>
                                    <a href="/compliance/hipaa">HIPAA</a>
                                </li>
                                <li>
                                    <a href="/compliance/irdai">IRDAI</a>
                                </li>
                                <li>
                                    <a href="/compliance/iso-27001">ISO 27001</a>
                                </li>
                                <li>
                                    <a href="/compliance/lgpd">LGPD</a>
                                </li>
                                <li>
                                    <a href="/compliance/nca-ecc">NCA ECC</a>
                                </li>
                                <li>
                                    <a href="/compliance/nis2">NIS2</a>
                                </li>
                                <li>
                                    <a href="/compliance/pci-dss">PCI DSS</a>
                                </li>
                                <li>
                                    <a href="/compliance/pdpl-saudi-arabi">PDPL Saudi Arabia</a>
                                </li>
                                <li>
                                    <a href="/compliance/rbi-india">RBI India</a>
                                </li>
                                <li>
                                    <a href="/compliance/sama">SAMA</a>
                                </li>
                                <li>
                                    <a href="/compliance/sebi">SEBI</a>
                                </li>
                            </ul>
                        </div>
                        <div class="col-lg-2 col-md-6 col-sm-12 py-3 px-1">
                            <span class="text-base-size text-weight-regular">About</span>
                            <ul class="page-footer-list">
                                <li>
                                    <a href="/about-resecurity">Company</a>
                                </li>
                                <li>
                                    <a href="/team">Team</a>
                                </li>
                                <li>
                                    <a href="/advisory-board">Advisory Board</a>
                                </li>
                                <li>
                                    <a href="/partners">Partners</a>
                                </li>
                                <li>
                                    <a href="/news">Press</a>
                                </li>
                                <li>
                                    <a href="/events/past">Events</a>
                                </li>
                                <li>
                                    <a href="/blog">Blog</a>
                                </li>
                                <li>
                                    <a href="/resources">Resources</a>
                                </li>
                                <li>
                                    <a href="/advisories">Advisories</a>
                                </li>
                                                                <li>
                                    <a href="/awards">Awards</a>
                                </li>
                                <li>
                                    <a href="/insights">Insights</a>
                                </li>
                                <li>
                                    <a href="/feed">RSS</a>
                                </li>
                            </ul>
                        </div>
                        <div class="col-lg-3 col-md-6 col-sm-12 py-3 px-1">
                            <span class="text-base-size text-weight-regular">Services</span>
                            <ul class="page-footer-list">
                                <li>
                                    <a href="/services/arbs">ARBS</a>
                                </li>
                                <li>
                                    <a href="/services/asset-tracing">Asset Tracing</a>
                                </li>
                                <li>
                                    <a href="/services/brand-protection">Brand Protection</a>
                                </li>
                                <li>
                                    <a href="/services/compromise-assessment">Compromise Assessment</a>
                                </li>
                                <li>
                                    <a href="/services/counterparty-assessment">Counterparty Assessment</a>
                                </li>
                                <li>
                                    <a href="/services/cyber-awareness-training">Cyber Awareness Training</a>
                                </li>
                                <li>
                                    <a href="/services/digital-forensics">Digital Forensics</a>
                                </li>
                                <li>
                                    <a href="/services/ep">Executive Protection</a>
                                </li>
                                <li>
                                    <a href="/services/incident-response">Incident Response</a>
                                </li>
                                <li>
                                    <a href="/services/intelligence-services">Intelligence Services</a>
                                </li>
                                <li>
                                    <a href="/services/managed-threat-detection">Managed Threat Detection</a>
                                </li>
                                <li>
                                    <a href="/services/red-teaming">Red Teaming</a>
                                </li>
                                <li>
                                    <a href="/services/stress-testing">Stress Testing</a>
                                </li>
                                <li>
                                    <a href="/services/vciso">vCISO</a>
                                </li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="page-footer-bottom pt-sm-5 pt-lg-0">
            <div class="row align-items-center flex-xs-reverse">
                <div class="col-12">
                    <div class="row align-items-center justify-content-center">
                        <div class="mx-4">
                            <a class="opacity-7" href="/privacy-policy">Privacy Policy</a>
                        </div>
                        <div class="mx-4">
                            <a class="opacity-7" href="/cookies-policy">Cookies</a>
                        </div>
                        <div class="mx-4">
                            <a class="opacity-7" href="/site/do-not-sell-my-personal-information">Do Not Sell My Personal Information</a>
                        </div>
                        <div class="mx-4">
                            <a class="opacity-7" href="/site/accessibility-policy">Accessibility Policy</a>
                        </div>
                    </div>
                </div>
            </div>
            <div class="row align-items-center flex-xs-reverse">
                <div class="col-12 my-3 text-center">
                    <p>Copyright © 2026 Resecurity, Inc. All rights reserved.</p>
                </div>
            </div>
        </div>
    </div>

</footer>
    
<script>
    const chatBotConfig = {"messages":{"thankYou":"Thank you! How can I help you?","chooseOption":"Please select an option below:","repeatMsg":"Is there anything else I can help you with?","typeYourQuestion":"Type your question below, and our team will respond promptly!","sendMsgPlaceholder":"Enter your question","sendMsgAnswer":"Thank you! Our team will contact you shortly."},"answers":["Choose an option below:","For inquiries related to sales, please feel free to contact us via email at \u003Ca class=\"link\" href=\"mailto:contact@resecurity.com\"\u003Econtact@resecurity.com\u003C\/a\u003E, call us at \u003Ca class=\"link\" href=\"tel:+18882738276\"\u003E+1 (888) 273-8276\u003C\/a\u003E or use the \u003Ca class=\"link\" href=\"#\" data-dialog-contact\u003EContact\u003C\/a\u003E form.","Thank you for your interest in becoming a partner! Please contact us at \u003Ca class=\"link\" href=\"mailto:contact@resecurity.com\"\u003Econtact@resecurity.com\u003C\/a\u003E, call us at \u003Ca class=\"link\" href=\"tel:+18882738276\"\u003E+1 (888) 273-8276\u003C\/a\u003E or use the \u003Ca class=\"link\" href=\"#\" data-dialog-contact\u003EContact\u003C\/a\u003E form. Our team is ready to assist you and guide you through the process of collaboration.","For assistance with your inquiry, please feel free to contact us via email at \u003Ca class=\"link\" href=\"mailto:contact@resecurity.com\"\u003Econtact@resecurity.com\u003C\/a\u003E, call us at \u003Ca class=\"link\" href=\"tel:+18882738276\"\u003E+1 (888) 273-8276\u003C\/a\u003E or use the \u003Ca class=\"link\" href=\"#\" data-dialog-contact\u003EContact\u003C\/a\u003E form. Our team is ready to assist you and provide the necessary support.","For urgent assistance regarding a breach, please contact us directly via email at \u003Ca class=\"link\" href=\"mailto:contact@resecurity.com\"\u003Econtact@resecurity.com\u003C\/a\u003E, call us at \u003Ca class=\"link\" href=\"tel:+18882738276\"\u003E+1 (888) 273-8276\u003C\/a\u003E or use the \u003Ca class=\"link\" href=\"#\" data-dialog-contact\u003EContact\u003C\/a\u003E form. Our team is here to help you resolve this as quickly as possible."],"questionsHTML":"\u003Cdiv\u003E\u003Cdiv class='msg question' data-id='0'\u003EInterested in your solutions\u003C\/div\u003E\u003Cdiv class='msg question' data-id='1'\u003ETalk to sales\u003C\/div\u003E\u003Cdiv class='msg question' data-id='2'\u003EBecome a partner\u003C\/div\u003E\u003Cdiv class='msg question' data-id='3'\u003ECustomer support\u003C\/div\u003E\u003Cdiv class='msg question' data-id='4'\u003EI was breached\u003C\/div\u003E\u003C\/div\u003E","optionsHTML":"\u003Cdiv\u003E\u003Cdiv class='msg option' data-id='0'\u003EBrand Protection\u003C\/div\u003E\u003Cdiv class='msg option' data-id='1'\u003EDark Web Monitoring\u003C\/div\u003E\u003Cdiv class='msg option' data-id='2'\u003EThreat Intelligence\u003C\/div\u003E\u003Cdiv class='msg option' data-id='3'\u003EFraud Prevention\u003C\/div\u003E\u003Cdiv class='msg option' data-id='4'\u003EEndpoint Protection\u003C\/div\u003E\u003Cdiv class='msg option' data-id='5'\u003EIdentity Protection\u003C\/div\u003E\u003Cdiv class='msg option' data-id='6'\u003EVAPT (Pentest, Red Team)\u003C\/div\u003E\u003Cdiv class='msg option' data-id='7'\u003EOther\u003C\/div\u003E\u003C\/div\u003E"};
</script>

<div x-data="chatBot(chatBotConfig)">
    <div
        class="chat-bot-btn"
        title="Resecurity Chat"
        @click="toggle()"
    >
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7.9 20A9 9 0 1 0 4 16.1L2 22Z"/></svg>
    </div>

    <div
        class="chat-bot"
        :class="{ 'visible': isVisibleChat }"
    >
        <div class="chat-bot-header">
            <div class="chat-bot-title">
                <img src="/themes/modern/images/logo-dark.svg" alt="Resecurity"/>
            </div>

            <div
                class="chat-bot-close"
                title="Close"
                @click="close()"
            >
                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 6L6 18M6 6l12 12"/></svg>
                <span class="sr-only">Close</span>
            </div>
        </div>

        <div
            class="chat-bot-body"
            x-ref="chat"
        >
            <div class="msg bot">
                Hi there! I'm here to answer your questions and assist you. <br /> Before we begin, could you please provide your name and email?            </div>

            <div
                class="chat-greeting-form"
                x-show="isVisibleForm"
                x-transition
            >
                <form id="w0" action="/llms.txt" method="post" x-ref="form">
<input type="hidden" name="_csrf-frontend" value="F20XP7dhaaJfxhwFyh1mleGpzn_uwTShxyQqE5CgmTZUDHVY8Q8ulTiqWGOmVVXS1Pu-Cp6NRvixRmgrqO31QQ==">
                    <div class="form-group mb-2 field-chatgreetingform-name required">
<input type="text" id="chatgreetingform-name" class="form-control" name="ChatGreetingForm[name]" maxlength="255" aria-required="true">
<label class="form-label" for="chatgreetingform-name">Full Name *</label>

<div class="help-block"></div>

</div>
                    <div class="form-group mb-2 field-chatgreetingform-email required">
<input type="text" id="chatgreetingform-email" class="form-control" name="ChatGreetingForm[email]" maxlength="255" aria-required="true">
<label class="form-label" for="chatgreetingform-email">Email Address *</label>

<div class="help-block"></div>

</div>
                    <div class="form-group">
                        <button type="submit" class="button dark outline w-100">Get Started</button>
                    </div>

                </form>            </div>

        </div>

        <div class="chat-bot-footer">
            <input
                type="text"
                class="chat-bot-input"
                placeholder="Choose an option"
                x-ref="input"
                :disabled="isDisabledMessage"
            />

            <button
                type="button"
                class="chat-bot-send"
                title="Send"
                :disabled="isDisabledMessage"
                @click="handleSendMessage()"
            >
                <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11zm7.318-19.539l-10.94 10.939"/></svg>
            </button>
        </div>
    </div>
</div></div>

<script src="//www.google.com/recaptcha/api.js?hl=en&amp;render=explicit&amp;onload=recaptchaOnloadCallback" async defer></script>
<script src="/assets/7f0e0abe/jquery.js"></script>
<script src="/assets/a63b9038/yii.js"></script>
<script src="/assets/a63b9038/yii.validation.js"></script>
<script src="/assets/a63b9038/yii.activeForm.js"></script>
<script type="module" src="/themes/modern/dist/js/index.bundle.js?42205920d89889bd66b766a47dfb4fa2"></script>
<script>var appRoutes = {"\/site\/cookies-accept-all":"\/site\/cookies-accept-all","\/chat-bot\/send-message":"\/chat-bot\/send-message"};
function recaptchaOnloadCallback() {
    "use strict";
    jQuery(".g-recaptcha").each(function () {
        const reCaptcha = jQuery(this);
        if (reCaptcha.data("recaptcha-client-id") === undefined) {
            const recaptchaClientId = grecaptcha.render(reCaptcha.attr("id"), {
                "callback": function (response) {
                    if (reCaptcha.data("form-id") !== "") {
                        jQuery("#" + reCaptcha.data("input-id"), "#" + reCaptcha.data("form-id")).val(response)
                            .trigger("change");
                    } else {
                        jQuery("#" + reCaptcha.data("input-id")).val(response).trigger("change");
                    }

                    if (reCaptcha.attr("data-callback")) {
                        eval("(" + reCaptcha.attr("data-callback") + ")(response)");
                    }
                },
                "expired-callback": function () {
                    if (reCaptcha.data("form-id") !== "") {
                        jQuery("#" + reCaptcha.data("input-id"), "#" + reCaptcha.data("form-id")).val("");
                    } else {
                        jQuery("#" + reCaptcha.data("input-id")).val("");
                    }

                    if (reCaptcha.attr("data-expired-callback")) {
                        eval("(" + reCaptcha.attr("data-expired-callback") + ")()");
                    }
                },
            });
            reCaptcha.data("recaptcha-client-id", recaptchaClientId);
        }
    });
}</script>
<script>jQuery(function ($) {
jQuery('#newsletter').yiiActiveForm([{"id":"subscribeform-email","name":"email","container":".field-subscribeform-email","input":"#subscribeform-email","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Email Address cannot be blank."});value = yii.validation.trim($form, attribute, {"skipOnArray":true,"skipOnEmpty":false,"chars":false}, value);yii.validation.string(value, messages, {"message":"Email Address must be a string.","max":255,"tooLong":"Email Address should contain at most 255 characters.","skipOnEmpty":1});yii.validation.email(value, messages, {"pattern":/^[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$/,"fullPattern":/^[^@]*<[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?>$/,"allowName":false,"message":"Email Address is not a valid email address.","enableIDN":false,"skipOnEmpty":1});}}], {"validationUrl":"\/site\/subscribe-validate"});
jQuery('#contact-form').yiiActiveForm([{"id":"contactform-middlename","name":"middlename","container":".field-contactform-middlename","input":"#contactform-middlename","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.string(value, messages, {"message":"Middlename must be a string.","max":255,"tooLong":"Middlename should contain at most 255 characters.","skipOnEmpty":1});}},{"id":"contactform-time","name":"time","container":".field-contactform-time","input":"#contactform-time","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.number(value, messages, {"pattern":/^[+-]?\d+$/,"message":"Time must be an integer.","skipOnEmpty":1});}},{"id":"contactform-firstname","name":"firstname","container":".field-contactform-firstname","input":"#contactform-firstname","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"First Name cannot be blank."});yii.validation.string(value, messages, {"message":"First Name must be a string.","max":512,"tooLong":"First Name should contain at most 512 characters.","skipOnEmpty":1});}},{"id":"contactform-lastname","name":"lastname","container":".field-contactform-lastname","input":"#contactform-lastname","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Last Name cannot be blank."});yii.validation.string(value, messages, {"message":"Last Name must be a string.","max":512,"tooLong":"Last Name should contain at most 512 characters.","skipOnEmpty":1});}},{"id":"contactform-company","name":"company","container":".field-contactform-company","input":"#contactform-company","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Company cannot be blank."});yii.validation.string(value, messages, {"message":"Company must be a string.","max":512,"tooLong":"Company should contain at most 512 characters.","skipOnEmpty":1});}},{"id":"contactform-email","name":"email","container":".field-contactform-email","input":"#contactform-email","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Email Address cannot be blank."});yii.validation.string(value, messages, {"message":"Email Address must be a string.","max":255,"tooLong":"Email Address should contain at most 255 characters.","skipOnEmpty":1});yii.validation.email(value, messages, {"pattern":/^[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$/,"fullPattern":/^[^@]*<[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?>$/,"allowName":false,"message":"Email Address is not a valid email address.","enableIDN":false,"skipOnEmpty":1});}},{"id":"contactform-message","name":"message","container":".field-contactform-message","input":"#contactform-message","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Message cannot be blank."});yii.validation.string(value, messages, {"message":"Message must be a string.","max":4096,"tooLong":"Message should contain at most 4,096 characters.","skipOnEmpty":1});}},{"id":"contactform-recaptcha","name":"reCaptcha","container":".field-contactform-recaptcha","input":"#contactform-recaptcha","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {if (!value) {
     messages.push("Please confirm that you are not a bot.");
}}}], {"validationUrl":"\/site\/contact-validate"});
jQuery('#request-trial-form').yiiActiveForm([{"id":"requesttrialform-middlename","name":"middlename","container":".field-requesttrialform-middlename","input":"#requesttrialform-middlename","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.string(value, messages, {"message":"Middlename must be a string.","max":255,"tooLong":"Middlename should contain at most 255 characters.","skipOnEmpty":1});}},{"id":"requesttrialform-time","name":"time","container":".field-requesttrialform-time","input":"#requesttrialform-time","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.number(value, messages, {"pattern":/^[+-]?\d+$/,"message":"Time must be an integer.","skipOnEmpty":1});}},{"id":"requesttrialform-firstname","name":"firstname","container":".field-requesttrialform-firstname","input":"#requesttrialform-firstname","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"First Name cannot be blank."});yii.validation.string(value, messages, {"message":"First Name must be a string.","max":512,"tooLong":"First Name should contain at most 512 characters.","skipOnEmpty":1});}},{"id":"requesttrialform-lastname","name":"lastname","container":".field-requesttrialform-lastname","input":"#requesttrialform-lastname","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Last Name cannot be blank."});yii.validation.string(value, messages, {"message":"Last Name must be a string.","max":512,"tooLong":"Last Name should contain at most 512 characters.","skipOnEmpty":1});}},{"id":"requesttrialform-email","name":"email","container":".field-requesttrialform-email","input":"#requesttrialform-email","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Email Address cannot be blank."});yii.validation.string(value, messages, {"message":"Email Address must be a string.","max":255,"tooLong":"Email Address should contain at most 255 characters.","skipOnEmpty":1});yii.validation.email(value, messages, {"pattern":/^[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$/,"fullPattern":/^[^@]*<[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?>$/,"allowName":false,"message":"Email Address is not a valid email address.","enableIDN":false,"skipOnEmpty":1});}},{"id":"requesttrialform-company","name":"company","container":".field-requesttrialform-company","input":"#requesttrialform-company","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Company cannot be blank."});yii.validation.string(value, messages, {"message":"Company must be a string.","max":512,"tooLong":"Company should contain at most 512 characters.","skipOnEmpty":1});}},{"id":"requesttrialform-location","name":"location","container":".field-requesttrialform-location","input":"#requesttrialform-location","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.string(value, messages, {"message":"Location must be a string.","max":512,"tooLong":"Location should contain at most 512 characters.","skipOnEmpty":1});}},{"id":"requesttrialform-recaptcha","name":"reCaptcha","container":".field-requesttrialform-recaptcha","input":"#requesttrialform-recaptcha","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {if (!value) {
     messages.push("Please confirm that you are not a bot.");
}}}], {"validationUrl":"\/site\/request-trial-validate"});
jQuery('#w0').yiiActiveForm([{"id":"chatgreetingform-name","name":"name","container":".field-chatgreetingform-name","input":"#chatgreetingform-name","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Full Name cannot be blank."});yii.validation.string(value, messages, {"message":"Full Name must be a string.","max":255,"tooLong":"Full Name should contain at most 255 characters.","skipOnEmpty":1});}},{"id":"chatgreetingform-email","name":"email","container":".field-chatgreetingform-email","input":"#chatgreetingform-email","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Email Address cannot be blank."});yii.validation.string(value, messages, {"message":"Email Address must be a string.","max":255,"tooLong":"Email Address should contain at most 255 characters.","skipOnEmpty":1});yii.validation.email(value, messages, {"pattern":/^[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?$/,"fullPattern":/^[^@]*<[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?>$/,"allowName":false,"message":"Email Address is not a valid email address.","enableIDN":false,"skipOnEmpty":1});}}], {"validationUrl":"\/chat-bot\/greeting-validate"});
});</script></body>
</html>