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
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
|
<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="utf-8" />
<meta name="description" content="Accurately and easily protect your networks and applications with Digital Defense vulnerability management solutions." />
<link rel="canonical" href="https://www.fortra.com/digital-defense" />
<meta property="og:title" content="Highest Performing Network Security Solutions | Digital Defense" />
<meta property="og:description" content="Accurately and easily protect your networks and applications with Digital Defense vulnerability management solutions." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:description" content="Accurately and easily protect your networks and applications with Digital Defense vulnerability management solutions." />
<meta name="twitter:title" content="Highest Performing Network Security Solutions | Digital Defense" />
<meta name="Generator" content="Drupal 10 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="title" content="Highest Performing Network Security Solutions | Digital Defense" />
<meta name="contentgroup1" content="Vulnerability Management" />
<meta name="contentgroup2" content="Fortra Corporate" />
<script type="application/ld+json">{
"@context": "https://schema.org",
"@graph": [
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "IBM Power Solutions",
"url": "https://power.fortra.com"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "About",
"url": "https://www.fortra.com/about"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Company",
"url": "https://www.fortra.com/about"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Recognition",
"url": "https://www.fortra.com/about/awards"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Careers",
"url": "https://www.fortra.com/about/careers"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Our Experts",
"url": "https://www.fortra.com/about/experts"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Newsroom",
"url": "https://www.fortra.com/about/newsroom"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Partners",
"url": "https://www.fortra.com/about/partner-program"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Blog",
"url": "https://www.fortra.com/blog"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Compliance & Frameworks",
"url": "https://www.fortra.com/compliance"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "CMMC",
"url": "https://www.fortra.com/compliance/cmmc"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "GDPR",
"url": "https://www.fortra.com/compliance/gdpr-compliance"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "HIPAA",
"url": "https://www.fortra.com/compliance/hipaa"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "ITSAR",
"url": "https://www.fortra.com/compliance/itsar"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "NIST CSF",
"url": "https://www.fortra.com/compliance/nist-csf"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "PCI DSS",
"url": "https://www.fortra.com/compliance/pci-compliance"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Industry Specific",
"url": "https://www.fortra.com/industry"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Energy & Utilities",
"url": "https://www.fortra.com/industry/energy-utilities"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Financial",
"url": "https://www.fortra.com/industry/finance"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Public Sector",
"url": "https://www.fortra.com/industry/government"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Healthcare",
"url": "https://www.fortra.com/industry/healthcare"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Manufacturing",
"url": "https://www.fortra.com/industry/industrial-manufacturing"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Retail",
"url": "https://www.fortra.com/industry/retail"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "SaaS",
"url": "https://www.fortra.com/industry/saas"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Threat Research",
"url": "https://www.fortra.com/intelligence"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Ransomware",
"url": "https://www.fortra.com/intelligence/ransomware"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Platform",
"url": "https://www.fortra.com/platform"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Platform Overview",
"url": "https://www.fortra.com/platform"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Brand Protection",
"url": "https://www.fortra.com/platform/brand-protection"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Dark Web Monitoring",
"url": "https://www.fortra.com/platform/brand-protection/dark-web-monitoring"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Domain Monitoring",
"url": "https://www.fortra.com/platform/brand-protection/domain-monitoring"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Fraud Prevention",
"url": "https://www.fortra.com/platform/brand-protection/fraud-prevention"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Phishing Protection",
"url": "https://www.fortra.com/platform/brand-protection/phishing-protection"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Social Media Protection",
"url": "https://www.fortra.com/platform/brand-protection/social-media-protection"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Data Classification",
"url": "https://www.fortra.com/platform/data-classification"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Data Loss Prevention",
"url": "https://www.fortra.com/platform/data-loss-prevention"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "DSPM",
"url": "https://www.fortra.com/platform/data-security-posture-management"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Securing AI",
"url": "https://www.fortra.com/platform/data-security/ai"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Email Security",
"url": "https://www.fortra.com/platform/email-security"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "View all products and services",
"url": "https://www.fortra.com/products"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Offensive Security",
"url": "https://www.fortra.com/products/offensive-security-overview"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Offensive Security Training",
"url": "https://www.fortra.com/products/offensive-security-training"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Outflank Security Tooling",
"url": "https://www.fortra.com/products/outflank-security-tooling"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Core Impact",
"url": "https://www.fortra.com/products/penetration-testing-software"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Cobalt Strike",
"url": "https://www.fortra.com/products/software-adversary-simulations-and-red-team-operations"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Resources",
"url": "https://www.fortra.com/resources"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "View all resources",
"url": "https://www.fortra.com/resources"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Events",
"url": "https://www.fortra.com/resources/events"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Case Studies",
"url": "https://www.fortra.com/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=Case%20Study&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Datasheets",
"url": "https://www.fortra.com/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=Datasheet&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Guides",
"url": "https://www.fortra.com/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=Guide&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Webinars",
"url": "https://www.fortra.com/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=On-Demand%20Webinar&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Security Advisories",
"url": "https://www.fortra.com/security/advisories/research"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Emerging Threats",
"url": "https://www.fortra.com/security/emerging-threats"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "View all solutions",
"url": "https://www.fortra.com/solutions"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Data Security",
"url": "https://www.fortra.com/solutions/data-protection"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Cloud Security",
"url": "https://www.fortra.com/solutions/data-protection/endpoint-cloud-protection"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Secure File Transfer",
"url": "https://www.fortra.com/solutions/data-security/secure-file-transfer"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Zero Trust",
"url": "https://www.fortra.com/solutions/zero-trust"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Login",
"url": "https://platform.fortra.com"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Partners",
"url": "https://www.fortra.com/about/channel-program"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Contact Us",
"url": "https://www.fortra.com/contact-us"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Pricing",
"url": "https://www.fortra.com/pricing"
},
{
"@context": "https://schema.org",
"@type": "SiteNavigationElement",
"@id": "#table-of-contents",
"name": "Support",
"url": "https://www.fortra.com/support"
}
]
}</script>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<link rel="icon" href="/themes/custom/hs/favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="alternate" hreflang="en" href="https://www.fortra.com/digital-defense" />
<link rel="alternate" hreflang="fr" href="https://www.fortra.com/fr/digital-defense" />
<link rel="alternate" hreflang="de" href="https://www.fortra.com/de/digital-defense" />
<link rel="alternate" hreflang="es" href="https://www.fortra.com/es/digital-defense" />
<link rel="icon" href="/favicon.ico" sizes="any"> <!-- REVISED (Nov 8)! -->
<link rel="icon" href="/themes/custom/fortra_parent_2022/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/themes/custom/fortra_parent_2022/apple-touch-icon.png"/>
<link rel="manifest" href="/themes/custom/fortra_parent_2022/manifest.json">
<title>Highest Performing Network Security Solutions | Digital Defense</title>
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_7deabV2JqNKD_UcflsTS2DdSpTL0DNBY_BLyfU-2tOY.css?delta=0&language=en&theme=hs&include=eJyNj0EOAiEMRS8Eg86FSIHKEIESWqLeXnZOmI3Lvv_S_joiYenQrIPeE5kH9aLcSmMmB1mzfHKq8ZpXCqg8dTSeSqOKVXibq6ZjG_Q52v2271p7gb-8AyFg13d1DdcyB1-J9YOFinWZ_JPNCk6GvFK0-BasnKie1SVRswLE-fO8F_pokLcf2UZtw-XEBwbFHxYsxgHjF04aiJk" />
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_7RAmPBiTooyZ3aruITImEQ261YZqS43mjiVLZed8nWI.css?delta=1&language=en&theme=hs&include=eJyNj0EOAiEMRS8Eg86FSIHKEIESWqLeXnZOmI3Lvv_S_joiYenQrIPeE5kH9aLcSmMmB1mzfHKq8ZpXCqg8dTSeSqOKVXibq6ZjG_Q52v2271p7gb-8AyFg13d1DdcyB1-J9YOFinWZ_JPNCk6GvFK0-BasnKie1SVRswLE-fO8F_pokLcf2UZtw-XEBwbFHxYsxgHjF04aiJk" />
<link rel="stylesheet" media="print" href="/sites/default/files/css/css_pK6R4FdMh168gcSZy1pTlPDBpcIKqyEmi8PE5rqu-Js.css?delta=2&language=en&theme=hs&include=eJyNj0EOAiEMRS8Eg86FSIHKEIESWqLeXnZOmI3Lvv_S_joiYenQrIPeE5kH9aLcSmMmB1mzfHKq8ZpXCqg8dTSeSqOKVXibq6ZjG_Q52v2271p7gb-8AyFg13d1DdcyB1-J9YOFinWZ_JPNCk6GvFK0-BasnKie1SVRswLE-fO8F_pokLcf2UZtw-XEBwbFHxYsxgHjF04aiJk" />
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_kQwYUFl9WGcp1L4EFhBqUKJgCroWqJZNyViSXDjljcI.css?delta=3&language=en&theme=hs&include=eJyNj0EOAiEMRS8Eg86FSIHKEIESWqLeXnZOmI3Lvv_S_joiYenQrIPeE5kH9aLcSmMmB1mzfHKq8ZpXCqg8dTSeSqOKVXibq6ZjG_Q52v2271p7gb-8AyFg13d1DdcyB1-J9YOFinWZ_JPNCk6GvFK0-BasnKie1SVRswLE-fO8F_pokLcf2UZtw-XEBwbFHxYsxgHjF04aiJk" />
<!-- VWO start -->
<link rel="preconnect" href="https://dev.visualwebsiteoptimizer.com" />
<script type="text/javascript" id="vwoCode"></script>
<!-- VWO end -->
<!-- TrustArc tag start -->
<div id="consent_blackbar"></div>
<script async="async" src="https://consent.trustarc.com/notice?domain=helpsystems.com&c=teconsent>m=1&js=nj¬iceType=bb&text=true&pn=2&cookieLink=https://www.fortra.com/cookie-policy&privacypolicylink=https://www.fortra.com/privacy-policy" crossorigin=""></script>
<script>
var __dispatched__ = {};
// Map of previously dispatched preference levels
/* First step is to register with the CM API to receive callbacks when a
preference update occurs. You must wait for the CM API
(PrivacyManagerAPI object) to exist on the page before registering.
*/
var __i__ = self.postMessage && setInterval(function () {
if (self.PrivacyManagerAPI && __i__) {
var apiObject = {
PrivacyManagerAPI: {
action: "getConsentDecision",
timestamp: new Date().getTime(),
self: self.location.host
}
};
self.top.postMessage(JSON.stringify(apiObject), "*");
__i__ = clearInterval(__i__);
}
}, 50);
/*
Callbacks will occur in the form of a PostMessage event.
This code listens for the appropriately formatted PostMessage event,
gets the new consent decision, and then pushes the events into the GTM framework. Once the event is submitted, that consent decision is marked in the 'dispatched' map so it does not occur more than once.
*/
self.addEventListener("message", function (e, d) {
try {
if (e.data && (d = JSON.parse(e.data)) && (d = d.PrivacyManagerAPI) && d.capabilities && d.action == "getConsentDecision") {
var newDecision = self.PrivacyManagerAPI.callApi("getGDPRConsentDecision", self.location.host).consentDecision;
newDecision && newDecision.forEach(function (label) {
if (! __dispatched__[label]) {
self.dataLayer && self.dataLayer.push({
"event": "GDPR Pref Allows " + label
});
__dispatched__[label] = 1;
}
});
}
} catch (xx) { /** not a cm api message **/
}
});
self.addEventListener("message", function(e, d) {
var notice_behavior = getCookie('notice_behavior');
var cmapi_cookie_privacy = getCookie('cmapi_cookie_privacy');
if ((notice_behavior.indexOf('us') > -1 && (document.cookie.indexOf('cmapi_cookie_privacy') < 0 || cmapi_cookie_privacy.indexOf(2) > -1))
|| (notice_behavior.indexOf('eu') > -1 && cmapi_cookie_privacy.indexOf(2) > -1)) {
vwoConsent();
}
});
function getCookie(cname) {
let name = cname + "=";
let decodedCookie = decodeURIComponent(document.cookie);
let ca = decodedCookie.split(';');
for(let i = 0; i <ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
function vwoConsent(){
window._vwo_code || (function() {
var account_id=344368,
version=2.1,
settings_tolerance=2000,
hide_element='body',
hide_element_style = 'opacity:0 !important;filter:alpha(opacity=0) !important;background:none !important',
/* DO NOT EDIT BELOW THIS LINE */
f=false,w=window,d=document,v=d.querySelector('#vwoCode'),cK='_vwo_'+account_id+'_settings',cc={};try{var c=JSON.parse(localStorage.getItem('_vwo_'+account_id+'_config'));cc=c&&typeof c==='object'?c:{}}catch(e){}var stT=cc.stT==='session'?w.sessionStorage:w.localStorage;code={nonce:v&&v.nonce,use_existing_jquery:function(){return typeof use_existing_jquery!=='undefined'?use_existing_jquery:undefined},library_tolerance:function(){return typeof library_tolerance!=='undefined'?library_tolerance:undefined},settings_tolerance:function(){return cc.sT||settings_tolerance},hide_element_style:function(){return'{'+(cc.hES||hide_element_style)+'}'},hide_element:function(){if(performance.getEntriesByName('first-contentful-paint')[0]){return''}return typeof cc.hE==='string'?cc.hE:hide_element},getVersion:function(){return version},finish:function(e){if(!f){f=true;var t=d.getElementById('_vis_opt_path_hides');if(t)t.parentNode.removeChild(t);if(e)(new Image).src='https://dev.visualwebsiteoptimizer.com/ee.gif?a='+account_id+e}},finished:function(){return f},addScript:function(e){var t=d.createElement('script');t.type='text/javascript';if(e.src){t.src=e.src}else{t.text=e.text}v&&t.setAttribute('nonce',v.nonce);d.getElementsByTagName('head')[0].appendChild(t)},load:function(e,t){var n=this.getSettings(),i=d.createElement('script'),r=this;t=t||{};if(n){i.textContent=n;d.getElementsByTagName('head')[0].appendChild(i);if(!w.VWO||VWO.caE){stT.removeItem(cK);r.load(e)}}else{var o=new XMLHttpRequest;o.open('GET',e,true);o.withCredentials=!t.dSC;o.responseType=t.responseType||'text';o.onload=function(){if(t.onloadCb){return t.onloadCb(o,e)}if(o.status===200||o.status===304){_vwo_code.addScript({text:o.responseText})}else{_vwo_code.finish('&e=loading_failure:'+e)}};o.onerror=function(){if(t.onerrorCb){return t.onerrorCb(e)}_vwo_code.finish('&e=loading_failure:'+e)};o.send()}},getSettings:function(){try{var e=stT.getItem(cK);if(!e){return}e=JSON.parse(e);if(Date.now()>e.e){stT.removeItem(cK);return}return e.s}catch(e){return}},init:function(){if(d.URL.indexOf('__vwo_disable__')>-1)return;var e=this.settings_tolerance();w._vwo_settings_timer=setTimeout(function(){_vwo_code.finish();stT.removeItem(cK)},e);var t;if(this.hide_element()!=='body'){t=d.createElement('style');var n=this.hide_element(),i=n?n+this.hide_element_style():'',r=d.getElementsByTagName('head')[0];t.setAttribute('id','_vis_opt_path_hides');v&&t.setAttribute('nonce',v.nonce);t.setAttribute('type','text/css');if(t.styleSheet)t.styleSheet.cssText=i;else t.appendChild(d.createTextNode(i));r.appendChild(t)}else{t=d.getElementsByTagName('head')[0];var i=d.createElement('div');i.style.cssText='z-index: 2147483647 !important;position: fixed !important;left: 0 !important;top: 0 !important;width: 100% !important;height: 100% !important;background: white !important;display: block !important;';i.setAttribute('id','_vis_opt_path_hides');i.classList.add('_vis_hide_layer');t.parentNode.insertBefore(i,t.nextSibling)}var o=window._vis_opt_url||d.URL,s='https://dev.visualwebsiteoptimizer.com/j.php?a='+account_id+'&u='+encodeURIComponent(o)+'&vn='+version;if(w.location.search.indexOf('_vwo_xhr')!==-1){this.addScript({src:s})}else{this.load(s+'&x=true')}}};w._vwo_code=code;code.init();})();
}
</script>
<!-- start Omniconvert.com code -->
<!-- Content Group 1 -->
<!-- End Content Group 2 -->
<!-- Google Tag Manager start -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-5SVD7PM');</script>
<!-- Google Tag Manager end -->
</head>
<body class="layout-no-sidebars page-node-24009 path-node node--type-product-line">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5SVD7PM" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<a href="#main-content" class="visually-hidden focusable skip-link">
Skip to main content
</a>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<div id="page-wrapper">
<div id="page">
<header id="header" class="header" role="banner" aria-label="Site header">
<nav class="navbar navbar-expand-xl">
<div class="logo_container">
<!--<span class="logo_helper"></span>-->
<a href="/" title="Home">
<span class="fortra-logo base-logo">
<img width="150" height="24" src="https://static.fortra.com/fortra-global-assets/fortra-logo-full.svg?l=1556465718" alt="Fortra" class="logo-full">
<img src="https://static.fortra.com/fortra-global-assets/fortra-logo-small.svg?l=230596132" alt="Data Classification" data-height-percentage="54" class="logo-small">
</span>
</a>
</div>
<div class="d-flex d-xl-none">
<div class="language-switcher-language-url block block-language block-language-blocklanguage-interface" id="block-hs-languageswitcher" role="navigation">
<div class="content">
<div class="dropdown">
<div class="dropdown-toggle language-toggle" type="button" id="language-switcher" data-toggle="dropdown" aria-expanded="false">
<i class="fa-sharp fa-light fa-globe"></i>
</div>
<div class="dropdown-menu" aria-labelledby="language-switcher"><span hreflang="en" data-drupal-link-system-path="node/24009" class="en dropdown-item is-active" aria-current="page"><a href="/digital-defense" class="language-link is-active" hreflang="en" data-drupal-link-system-path="node/24009" aria-current="page">EN</a></span><span hreflang="fr" data-drupal-link-system-path="node/24009" class="fr dropdown-item"><a href="/fr/digital-defense" class="language-link" hreflang="fr" data-drupal-link-system-path="node/24009">FR</a></span><span hreflang="de" data-drupal-link-system-path="node/24009" class="de dropdown-item"><a href="/de/digital-defense" class="language-link" hreflang="de" data-drupal-link-system-path="node/24009">DE</a></span><span hreflang="es" data-drupal-link-system-path="node/24009" class="es dropdown-item"><a href="/es/digital-defense" class="language-link" hreflang="es" data-drupal-link-system-path="node/24009">ES</a></span><span></span><span></span></div>
</div>
</div>
</div>
</div>
<button class="navbar-toggler col-2 col-md-1" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-close"><i class="fa-sharp fa-times" aria-hidden="true"></i></span>
</button>
<div class="collapse navbar-collapse ml-auto" id="navbarCollapse">
<div class="header-menus d-flex flex-fill flex-column align-items-start align-items-xl-end">
<div class="ml-auto d-none d-xl-block">
<section class="region region-secondary-menu ml-xl-auto d-none d-xl-flex flex-row col-12 flex-wrap align-items-center">
<div id="block-events-calendar" class="block block-block-content block-block-content8547c386-c443-4d4c-9291-2ee09e437d47">
<div class="content">
<a href="/resources/events" class="text-light pr-3" alt="Events"><i class="fa-sharp fa-light fa-calendar-alt event-calendar"></i></a>
</div>
</div>
<div class="language-switcher-language-url block block-language block-language-blocklanguage-interface" id="block-hs-languageswitcher" role="navigation">
<div class="content">
<div class="dropdown">
<div class="dropdown-toggle language-toggle" type="button" id="language-switcher" data-toggle="dropdown" aria-expanded="false">
<i class="fa-sharp fa-light fa-globe"></i>
</div>
<div class="dropdown-menu" aria-labelledby="language-switcher"><span hreflang="en" data-drupal-link-system-path="node/24009" class="en dropdown-item is-active" aria-current="page"><a href="/digital-defense" class="language-link is-active" hreflang="en" data-drupal-link-system-path="node/24009" aria-current="page">EN</a></span><span hreflang="fr" data-drupal-link-system-path="node/24009" class="fr dropdown-item"><a href="/fr/digital-defense" class="language-link" hreflang="fr" data-drupal-link-system-path="node/24009">FR</a></span><span hreflang="de" data-drupal-link-system-path="node/24009" class="de dropdown-item"><a href="/de/digital-defense" class="language-link" hreflang="de" data-drupal-link-system-path="node/24009">DE</a></span><span hreflang="es" data-drupal-link-system-path="node/24009" class="es dropdown-item"><a href="/es/digital-defense" class="language-link" hreflang="es" data-drupal-link-system-path="node/24009">ES</a></span><span></span><span></span></div>
</div>
</div>
</div>
<nav role="navigation" aria-labelledby="block-secondarynavigation-menu" id="block-secondarynavigation" class="block block-menu navigation menu--secondary-navigation main-menu navbar navbar-expand-xl">
<div class="sr-only" id="block-secondarynavigation-menu">Secondary Navigation</div>
<ul region="secondary_menu" class="clearfix nav">
<li class="nav-item">
<a href="https://platform.fortra.com" target="_blank" class="nav-link">Login</a>
</li>
<li class="nav-item">
<a href="/contact-us" class="nav-link" data-drupal-link-system-path="node/11398">Contact Us</a>
</li>
<li class="nav-item">
<a href="/support" class="nav-link" data-drupal-link-system-path="node/11469">Support</a>
</li>
<li class="nav-item">
<a href="/about/channel-program" class="nav-link" data-drupal-link-system-path="node/11650">Partners</a>
</li>
<li class="nav-item">
<a href="/pricing" class="btn btn-primary nav-link btn btn-primary" data-drupal-link-system-path="node/18717">Pricing</a>
</li>
</ul>
</nav>
</section>
</div>
<div class="header-primary ml-xl-auto d-flex flex-column flex-xl-row col-12 justify-content-xl-end">
<div id="block-fortramainmenu" class="block block-fortra-core block-fortra-main-menu-block">
<div class="content">
<ul region="primary_menu" class="clearfix main-navigation--nav nav navbar-nav menu-level-">
<li class="fmHasChildren dropdown-menu--has-3-columns nav-item menu-name-platform expanded dropdown">
<div class="btn-group">
<button id="mlc-dfc15016-8490-47f0-a158-597fabcd006f" type="button" class="nav-link dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Platform
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu menu-level-1">
<li class="dropdown-item">
<a href="/platform" class="fmFullWhite" data-drupal-link-system-path="node/26506">Platform Overview</a>
</li>
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 1</span>
<ul class="dropdown-submenu menu-level-2">
<li class="fmHasChildren dropdown-submenu expanded dropdown">
<a href="/solutions/data-protection" class="menu-item__title-link--1" data-drupal-link-system-path="node/24510">Data Security</a>
<ul class="dropdown-submenu menu-level-3">
<li class="dropdown-item">
<a href="/platform/data-security-posture-management" title="Continuously discover, classify, and protect sensitive data across cloud environments to prevent exposure risks." data-drupal-link-system-path="node/28268">DSPM</a>
<div class="menu-item-description">Continuously discover, classify, and protect sensitive data across cloud environments to prevent exposure risks.</div>
</li>
<li class="dropdown-item">
<a href="/platform/data-classification" title="Automatically identify and label sensitive information to enforce proper handling and regulatory compliance." data-drupal-link-system-path="node/30242">Data Classification</a>
<div class="menu-item-description">Automatically identify and label sensitive information to enforce proper handling and regulatory compliance.</div>
</li>
<li class="dropdown-item">
<a href="/platform/data-loss-prevention" title="Detect and prevent unauthorized sharing of confidential data across endpoints, networks, and cloud platforms." data-drupal-link-system-path="node/28768">Data Loss Prevention</a>
<div class="menu-item-description">Detect and prevent unauthorized sharing of confidential data across endpoints, networks, and cloud platforms.</div>
</li>
<li class="dropdown-item">
<a href="/platform/email-security" title="Secure email against phishing, malware, impersonation, and data loss with advanced threat detection and response." data-drupal-link-system-path="node/31412">Email Security</a>
<div class="menu-item-description">Secure email against phishing, malware, impersonation, and data loss with advanced threat detection and response.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 2</span>
<ul class="dropdown-submenu menu-level-2">
<li class="fmHasChildren dropdown-submenu expanded dropdown">
<a href="/platform/brand-protection" class="menu-item__title-link--2" data-drupal-link-system-path="node/24297">Brand Protection</a>
<ul class="dropdown-submenu menu-level-3">
<li class="dropdown-item">
<a href="/platform/brand-protection/domain-monitoring" target="_self" title="Track domain activity to detect impersonation, misuse, or fraudulent registrations targeting your brand." data-drupal-link-system-path="node/30464">Domain Monitoring</a>
<div class="menu-item-description">Track domain activity to detect impersonation, misuse, or fraudulent registrations targeting your brand.</div>
</li>
<li class="dropdown-item">
<a href="/platform/brand-protection/phishing-protection" target="_self" title="Block malicious emails, links, and websites to safeguard users against credential theft and scams." data-drupal-link-system-path="node/30466">Phishing Protection</a>
<div class="menu-item-description">Block malicious emails, links, and websites to safeguard users against credential theft and scams.</div>
</li>
<li class="dropdown-item">
<a href="/platform/brand-protection/social-media-protection" target="_self" title="Monitor social platforms for impersonation, brand misuse, and leaked sensitive information." data-drupal-link-system-path="node/30443">Social Media Protection</a>
<div class="menu-item-description">Monitor social platforms for impersonation, brand misuse, and leaked sensitive information.</div>
</li>
<li class="dropdown-item">
<a href="/platform/brand-protection/dark-web-monitoring" target="_self" title="Scan dark web sources for stolen credentials, company data, or emerging cyber threats." data-drupal-link-system-path="node/30439">Dark Web Monitoring</a>
<div class="menu-item-description">Scan dark web sources for stolen credentials, company data, or emerging cyber threats.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 3</span>
<ul class="dropdown-submenu menu-level-2">
<li class="fmHasChildren dropdown-submenu expanded dropdown">
<a href="/products/offensive-security-overview" class="menu-item__title-link--4" data-drupal-link-system-path="node/28254">Offensive Security</a>
<ul class="dropdown-submenu menu-level-3">
<li class="dropdown-item">
<a href="/products/software-adversary-simulations-and-red-team-operations" title="Advanced adversary simulation platform for red teams to test detection and response effectiveness." data-drupal-link-system-path="node/20228">Cobalt Strike</a>
<div class="menu-item-description">Advanced adversary simulation platform for red teams to test detection and response effectiveness.</div>
</li>
<li class="dropdown-item">
<a href="/products/penetration-testing-software" title="Comprehensive penetration testing tool enabling safe exploitation and validation of security vulnerabilities." data-drupal-link-system-path="node/18808">Core Impact</a>
<div class="menu-item-description">Comprehensive penetration testing tool enabling safe exploitation and validation of security vulnerabilities.</div>
</li>
<li class="dropdown-item">
<a href="/products/outflank-security-tooling" title="Red team toolkit providing covert capabilities to emulate sophisticated real-world attacker behaviors." data-drupal-link-system-path="node/25074">Outflank Security Tooling</a>
<div class="menu-item-description">Red team toolkit providing covert capabilities to emulate sophisticated real-world attacker behaviors.</div>
</li>
<li class="dropdown-item">
<a href="/products/offensive-security-training" title="Hands‑on training teaching security professionals to use tools like Cobalt Strike for real‑world adversary simulations." data-drupal-link-system-path="node/30822">Offensive Security Training</a>
<div class="menu-item-description">Hands‑on training teaching security professionals to use tools like Cobalt Strike for real‑world adversary simulations.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-item">
<a href="/products" class="fmFullDusk" data-drupal-link-system-path="node/25940">View all products and services</a>
</li>
</ul>
</div>
</li>
<li class="fmHasChildren dropdown-menu--has-3-columns nav-item menu-name-solutions expanded dropdown">
<div class="btn-group">
<button id="mlc-1f9bac62-e420-413f-b820-ee02e07f926c" type="button" class="nav-link dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Solutions
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu menu-level-1">
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 1</span>
<ul class="dropdown-submenu menu-level-2">
<li class="fmHasChildren dropdown-submenu expanded dropdown">
<a href="/industry" class="bold ml-0" data-drupal-link-system-path="node/25493">Industry Specific</a>
<ul class="dropdown-submenu menu-level-3">
<li class="dropdown-item">
<a href="/industry/finance" data-drupal-link-system-path="node/25896">Financial</a>
</li>
<li class="dropdown-item">
<a href="/industry/government" data-drupal-link-system-path="node/24247">Public Sector</a>
</li>
<li class="dropdown-item">
<a href="/industry/energy-utilities" data-drupal-link-system-path="node/27831">Energy & Utilities</a>
</li>
<li class="dropdown-item">
<a href="/industry/industrial-manufacturing" data-drupal-link-system-path="node/26071">Manufacturing</a>
</li>
<li class="dropdown-item">
<a href="/industry/saas" data-drupal-link-system-path="node/26782">SaaS</a>
</li>
<li class="dropdown-item">
<a href="/industry/healthcare" data-drupal-link-system-path="node/26172">Healthcare</a>
</li>
<li class="dropdown-item">
<a href="/industry/retail" data-drupal-link-system-path="node/26288">Retail</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 2</span>
<ul class="dropdown-submenu menu-level-2">
<li class="fmHasChildren dropdown-submenu expanded dropdown">
<a href="/compliance" class="bold ml-0" data-drupal-link-system-path="node/6287">Compliance & Frameworks</a>
<ul class="dropdown-submenu menu-level-3">
<li class="dropdown-item">
<a href="/compliance/pci-compliance" data-drupal-link-system-path="node/11146">PCI DSS</a>
</li>
<li class="dropdown-item">
<a href="/compliance/itsar" data-drupal-link-system-path="node/27827">ITSAR</a>
</li>
<li class="dropdown-item">
<a href="/compliance/nist-csf" data-drupal-link-system-path="node/26532">NIST CSF</a>
</li>
<li class="dropdown-item">
<a href="/compliance/gdpr-compliance" data-drupal-link-system-path="node/15361">GDPR</a>
</li>
<li class="dropdown-item">
<a href="/compliance/hipaa" data-drupal-link-system-path="node/11145">HIPAA</a>
</li>
<li class="dropdown-item">
<a href="/compliance/cmmc" data-drupal-link-system-path="node/30133">CMMC</a>
</li>
<li class="dropdown-item">
<a href="/solutions/zero-trust" data-drupal-link-system-path="node/24746">Zero Trust</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 3</span>
<ul class="dropdown-submenu menu-level-2">
<li class="fmHasChildren dropdown-submenu expanded dropdown">
<span class="bold mb-2 pt-2">Business Needs</span>
<ul class="dropdown-submenu menu-level-3">
<li class="dropdown-item">
<a href="/platform/data-security/ai" data-drupal-link-system-path="node/28739">Securing AI</a>
</li>
<li class="dropdown-item">
<a href="/intelligence/ransomware" data-drupal-link-system-path="node/26822">Ransomware</a>
</li>
<li class="dropdown-item">
<a href="/solutions/data-protection/endpoint-cloud-protection" data-drupal-link-system-path="node/28314">Cloud Security</a>
</li>
<li class="dropdown-item">
<a href="/platform/brand-protection/fraud-prevention" target="_self" data-drupal-link-system-path="node/30462">Fraud Prevention</a>
</li>
<li class="dropdown-item">
<a href="/solutions/data-security/secure-file-transfer">Secure File Transfer</a>
</li>
<li class="dropdown-item">
<a href="https://power.fortra.com" target="_blank" class="external">IBM Power Solutions</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="dropdown-item">
<a href="/solutions" class="fmFullDusk" data-drupal-link-system-path="node/14687">View all solutions</a>
</li>
</ul>
</div>
</li>
<li class="fmHasChildren dropdown-menu--has-3-columns nav-item menu-name-resources expanded dropdown">
<div class="btn-group">
<button id="mlc-1ff20a96-fbf1-4133-b313-08816785f858" type="button" class="nav-link dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Resources
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu menu-level-1">
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 1</span>
<ul class="dropdown-submenu menu-level-2">
<li class="dropdown-item">
<a href="/intelligence" data-drupal-link-system-path="node/24659">Threat Research</a>
</li>
<li class="dropdown-item">
<a href="/security/emerging-threats" data-drupal-link-system-path="security/emerging-threats">Emerging Threats</a>
</li>
<li class="dropdown-item">
<a href="/security/advisories/research" data-drupal-link-system-path="security/advisories/research">Security Advisories</a>
</li>
</ul>
</li>
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 2</span>
<ul class="dropdown-submenu menu-level-2">
<li class="dropdown-item">
<a href="/resources/events" data-drupal-link-system-path="resources/events">Events</a>
</li>
<li class="dropdown-item">
<a href="/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=On-Demand%20Webinar&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc" data-drupal-link-query="{"filters":[{"field":"cta_type.keyword","values":["On-Demand Webinar"],"type":"any"}],"size":"n_20_n","sort":[{"field":"published_at","direction":"desc"}]}" data-drupal-link-system-path="node/27474">Webinars</a>
</li>
<li class="dropdown-item">
<a href="/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=Case%20Study&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc" data-drupal-link-query="{"filters":[{"field":"cta_type.keyword","values":["Case Study"],"type":"any"}],"size":"n_20_n","sort":[{"field":"published_at","direction":"desc"}]}" data-drupal-link-system-path="node/27474">Case Studies</a>
</li>
</ul>
</li>
<li class="fmColumn fmHasChildren dropdown-submenu expanded dropdown">
<span>Column 3</span>
<ul class="dropdown-submenu menu-level-2">
<li class="dropdown-item">
<a href="/blog" data-drupal-link-system-path="blog">Blog</a>
</li>
<li class="dropdown-item">
<a href="/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=Datasheet&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc" data-drupal-link-query="{"filters":[{"field":"cta_type.keyword","values":["Datasheet"],"type":"any"}],"size":"n_20_n","sort":[{"field":"published_at","direction":"desc"}]}" data-drupal-link-system-path="node/27474">Datasheets</a>
</li>
<li class="dropdown-item">
<a href="/resources?size=n_20_n&filters%5B0%5D%5Bfield%5D=cta_type.keyword&filters%5B0%5D%5Bvalues%5D%5B0%5D=Guide&filters%5B0%5D%5Btype%5D=any&sort%5B0%5D%5Bfield%5D=published_at&sort%5B0%5D%5Bdirection%5D=desc" data-drupal-link-query="{"filters":[{"field":"cta_type.keyword","values":["Guide"],"type":"any"}],"size":"n_20_n","sort":[{"field":"published_at","direction":"desc"}]}" data-drupal-link-system-path="node/27474">Guides</a>
</li>
</ul>
</li>
<li class="dropdown-item">
<a href="/resources" class="fmButton" data-drupal-link-system-path="node/27474">View all resources</a>
</li>
</ul>
</div>
</li>
<li class="fmHasChildren nav-item menu-name-about expanded dropdown">
<div class="btn-group">
<button id="mlc-9e4f55fa-628a-4e80-96c0-355e820e1674" type="button" class="nav-link dropdown-toggle dropdown-toggle-split" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
About
<span class="sr-only">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu menu-level-1">
<li class="dropdown-item">
<a href="/about" data-drupal-link-system-path="node/28295">Company</a>
</li>
<li class="dropdown-item">
<a href="/about/experts" data-drupal-link-system-path="node/26855">Our Experts</a>
</li>
<li class="dropdown-item">
<a href="/about/partner-program">Partners</a>
</li>
<li class="dropdown-item">
<a href="/about/awards" data-drupal-link-system-path="node/27122">Recognition</a>
</li>
<li class="dropdown-item">
<a href="/about/newsroom" data-drupal-link-system-path="node/30794">Newsroom</a>
</li>
<li class="dropdown-item">
<a href="/about/careers" data-drupal-link-system-path="node/18775">Careers</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="multi-searchbox-form block block-fortra-multisearch block-multisearchbox-block" data-drupal-selector="multi-searchbox-form" id="block-hs-fortramultisitesearchsearchboxblock">
<div class="content">
<div class="searchbar-form">
<form action="/digital-defense" method="post" id="multi-searchbox-form" accept-charset="UTF-8">
<fieldset class="js-form-item js-form-type-textfield form-type-textfield js-form-item-searchtext form-item-searchtext form-no-label form-group">
<label for="edit-searchtext" class="sr-only js-form-required form-required">Search</label>
<input class="required form-control" placeholder="Search" data-drupal-selector="edit-searchtext" type="text" id="edit-searchtext" name="searchtext" value="" size="60" maxlength="128" required="required" aria-required="true" data-bef-auto-submit-exclude="" />
</fieldset>
<input autocomplete="off" data-drupal-selector="form-wxfuqnoblcdz25mbzmkucgyubd1xwrz-ydeepc2ddyc" type="hidden" name="form_build_id" value="form-WxFUqnOBLcDZ25MBzMKUCGYUbD1xWrz_ydeEpc2dDYc" class="form-control" data-bef-auto-submit-exclude="" />
<input data-drupal-selector="edit-multi-searchbox-form" type="hidden" name="form_id" value="multi_searchbox_form" class="form-control" data-bef-auto-submit-exclude="" />
<div data-drupal-selector="edit-actions" class="form-actions js-form-wrapper form-group" id="edit-actions"><input class="search-button form-submit btn btn-primary button js-form-submit form-control" data-drupal-selector="edit-submit" type="submit" id="edit-submit" name="op" value="" data-bef-auto-submit-exclude="" />
</div>
</form>
</div><div class="searchbar-icon"><i class="fa-sharp fa-search" aria-hidden="true"></i></div>
</div>
</div>
</div>
</div>
</div>
</nav>
</header>
<div id="main-wrapper" class="layout-main-wrapper clearfix">
<div id="main" class="main ">
<!--Header type = "header-5"-->
<header class="header-1 bg-4" style="">
<div data-component-id="fortra_parent_2022:header-1" class="jumbotron jumbotron-fluid header-5">
<div class="container-md">
<div class="row">
<div class="col-sm-12">
<h1 class="node__title h2">
<div class="field field--name-field-header-title field--type-string field--label-hidden field__item">Fortra's Digital Defense</div>
</h1>
<div class="pb-3">
</div>
</div>
<div class="col-sm-4"></div>
</div>
</div>
</div>
</header>
<!-- progress bar - currently shows only for product page-->
<div class="progress-bar-container">
<div class="progress-bar"></div>
</div>
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-left clearfix">
<main class="main-content col order-last" id="content" role="main">
<a id="main-content" tabindex="-1"></a>
<div data-drupal-messages-fallback class="hidden"></div>
<div id="block-hs-content" class="block block-system block-system-main-block">
<div class="content">
<article class="node node--type-product-line node--view-mode-full clearfix">
<div class="node__content clearfix agari">
<div class="container">
</div>
<div class="paragraph paragraph--type--section paragraph--view-mode--default section row grad-2">
<div class="col-sm-12">
<div class="container">
<div class="section-subtext text-center">
<div class="clearfix text-formatted field field--name-field-section-subtext field--type-text-long field--label-hidden field__item"><p>Since 1999, Digital Defense has created patented, leading-edge SaaS information security technology that helps organizations small and large safeguard sensitive data and make information security easier. Now a part of Fortra’s expanding cybersecurity suite, these products help organizations build a layered security approach and keep up with evolving security challenges.</p><p> </p><h2>Digital Defense Products You've Grown to Love</h2><p> </p></div>
</div>
<div class="paragraph paragraph--type--_-column-content paragraph--view-mode--default row d-flex align-items-start">
<div class= "col-sm-6">
<h3><a href="/products/fortra-vulnerability-management" title="Fortra Vulnerability Management" rel="noopener" data-entity-type="node" data-entity-uuid="ac4dbe70-1cc4-46b1-aa5a-524cfd039d4c" data-entity-substitution="canonical" tabindex="-1">Fortra Vulnerability Management (Fortra VM)</a></h3><div>Industry leading complete, accurate, and easy-to-use vulnerability management solution</div><hr><h3><a href="/products/web-application-scanning" target="_blank" rel="noopener" data-entity-type="node" data-entity-uuid="2c8a963c-884e-4066-acac-8cafeec41d01" data-entity-substitution="canonical" tabindex="-1" title="Web Application Scanning (WAS) - product page">Web Application Scanning (WAS</a>)</h3><div>Easy dynamic Web Application Scanning with accurate actionable results</div>
</div>
<div class="col-sm-6">
<h3><a href="/products/active-threat-sweep" title="Active Threat Sweep (ATS) - product page" rel="noopener" data-entity-type="node" data-entity-uuid="bd31babf-ef29-438f-aea3-191e7cf32ba5" data-entity-substitution="canonical" tabindex="-1">Active Threat Sweep (ATS</a>)</h3><div>Active Threat Sweep quickly and proactively detects active cyber security threats in your network</div><hr><h3><a href="/services/penetration-testing" target="_blank" title="Penetration Testing Services" data-entity-type="node" data-entity-uuid="a4ea61dd-4ef2-4975-a11b-6c561dad0fec" data-entity-substitution="canonical" tabindex="-1">Penetration Testing</a></h3><div>Employ ethical hacking experts to conduct penetration tests, identify your cyber security weaknesses, and recommend remediation methods</div>
</div>
</div>
<div class="paragraph paragraph--type--cta-group paragraph--view-mode--default">
<div class="field field--name-field-primary-cta field--type-entity-reference-revisions field--label-hidden field__items">
<div class="field__item">
<div class="paragraph paragraph--type--cta paragraph--view-mode--default hs-page-cta cta-type--primary">
<h3 class="cta-headline">
<div class="field field--name-field-cta-headline field--type-string field--label-hidden field__item">Get Started with Fortra</div>
</h3>
<div class="clearfix text-formatted field field--name-field-cta-text field--type-text-long field--label-hidden field__item"><p>Implement a strategic, multi-layered defense that meets compliance requirements and safeguards your business against disruptive threats.</p></div>
<a href="/products" class="btn btn-2">
VIEW ALL PRODUCTS
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!--node__content-->
</article>
</div>
</div>
</main>
</div>
</div>
</div>
</div>
<footer class="site-footer footer container-fluid">
<div id="footer-center">
<div class="region region-footer">
<div class="container">
<div class="row">
<div class="col-lg-2 text-left text-lg-center p-3 p-lg-0 pl-lg-4">
<a class="logo" href="https://www.fortra.com" title="Home">
<img src="/themes/custom/fortra_parent_2022/images/logo.svg" alt="Fortra logo"/>
</a>
</div>
<div class="col-lg-8 offset-lg-1 text-center">
<div id="block-footersocialicons-2" class="block block-block-content block-block-content547a2516-afb3-4202-841d-ba37f8b5ad96">
<div class="content">
<div class="row">
<div class="col-md-7">
<div class="container-fluid">
<ul class="row icons">
<li class="col footer-icon"><a href="tel:+1 800-328-1000"><span class="icon"><i class="fal fa-phone-volume" aria-hidden="true"></i> </span> <span class="text comm-links" id="comm-links-telephone">+1 800-328-1000</span></a></li>
<li class="col footer-icon"><a href="/cdn-cgi/l/email-protection#d3babdb5bc93b5bca1a7a1b2fdb0bcbe" itemprop="email"><span class="icon"><i class="fal fa-envelope" aria-hidden="true"></i></span> <span class="text comm-links" id="comm-links-email">Email Us</span></a></li>
<li class="col footer-icon"><a href="/contact-us#leadbot-3"><span class="icon"><i class="fal fa-comment-alt-dots" aria-hidden="true"></i></span> <span class="text comm-links" id="comm-links-chat">Start Live Chat</span></a></li>
<li class="col footer-icon"><a href="https://support.fortra.com/support/cases/open" xml:lang="en" hreflang="en"><span class="icon"><i class="fal fa-headset" aria-hidden="true"></i></span> <span class="text comm-links" id="comm-links-support">Request Support</span></a></li>
<li class="col footer-icon"><a href="/resources/fortra-subscription-center"><span class="icon"><i class="fal fa-hand-pointer" aria-hidden="true"></i></span><span class="text comm-links" id="comm-links-subscribe">Subscribe</span></a></li>
</ul>
</div>
</div>
<div class="col-md-5"><div class="container-fluid">
<ul class="row icons" itemscope itemtype="http://schema.org/Organization">
<!--<li class="col-md footer-icon"><a href="/about/contact" itemprop="email"><span class="icon"><img src="/themes/custom/helpsystems/images/Email-Icon.svg" alt="Email Core Security"></span> <span class="text comm-links" id="comm-links-email">Email Us</span></a></li>-->
<li class="col footer-icon social tw"><a href="https://x.com/fortraofficial" class="toplink" target="_blank"><i class="icon fab fa-x-twitter" aria-hidden="true"></i><span class="text comm-links" id="comm-links-twitter">X</span> <span class="text sr-only">Find us on
X</span></a></li>
<li class="col footer-icon social in"><a href="https://www.linkedin.com/company/fortra" class="toplink" target="_blank"><i class="icon fab fa-linkedin-in" aria-hidden="true"></i><span class="text comm-links" id="comm-links-linkedin-in">LinkedIn</span> <span class="text sr-only">Find us on
LinkedIn</span></a></li>
<li class="col footer-icon social fb"><a href="https://www.youtube.com/channel/UCuiogAh6174TT6ms4bEz3og" class="toplink" target="_blank"><i class="icon fab fa-youtube" aria-hidden="true"></i><span class="text comm-links" id="comm-links-youtube">Youtube</span> <span class="text sr-only">Find us on
Youtube</span></a></li>
<li class="col footer-icon social fb"><a href="https://www.reddit.com/r/Fortra/" class="toplink" target="_blank"><i class="icon fab fa-reddit" aria-hidden="true"></i><span class="text comm-links" id="comm-links-reddit">Reddit</span> <span class="text sr-only">Find us on Reddit</span></a></li>
</ul>
</div></div></div>
</div>
</div>
</div>
</div>
<div class="footer-menu">
<nav role="navigation" aria-labelledby="block-footer-menu" id="block-footer" class="block block-menu navigation menu--footer main-menu navbar navbar-expand-xl">
<div class="sr-only" id="block-footer-menu">Footer menu</div>
<div region="footer_middle" class="clearfix row footer-menu row-eq-height w-100">
<div class="menu-item--expanded col-lg">
<h3> <a href="/solutions" class="nav-link " data-drupal-link-system-path="node/14687">Areas of Expertise</a>
</h3> <ul class="menu list-unstyled d-none d-lg-block">
<li>
<a href="/solutions/infrastructure-protection" class="nav-link " data-drupal-link-system-path="node/20985">Infrastructure Protection</a>
</li>
<li>
<a href="/solutions/email-security-anti-phishing" class="nav-link " data-drupal-link-system-path="node/22363">Email Security & Anti-Phishing</a>
</li>
<li>
<a href="/solutions/data-protection" class="nav-link " data-drupal-link-system-path="node/24510">Data Protection</a>
</li>
<li>
<a href="/services/managed-security-services" class="nav-link " data-drupal-link-system-path="node/8921">Managed Security</a>
</li>
<li>
<a href="/compliance" class="nav-link " data-drupal-link-system-path="node/6287">Compliance</a>
</li>
<li>
<a href="/solutions/secure-file-transfer" class="nav-link " data-drupal-link-system-path="node/12721">Managed File Transfer</a>
</li>
<li>
<a href="https://power.fortra.com" class="nav-link ">IBM Power Solutions</a>
</li>
</ul>
</div>
<div class="menu-item--expanded col-lg">
<h3> <a href="/about" class="nav-link " data-drupal-link-system-path="node/28295">About</a>
</h3> <ul class="menu list-unstyled d-none d-lg-block">
<li>
<a href="/security" class="nav-link " data-drupal-link-system-path="node/26212">Security & Trust Center</a>
</li>
<li>
<a href="/about/newsroom" class="nav-link " data-drupal-link-system-path="node/30794">Newsroom</a>
</li>
<li>
<a href="/about/channel-program" class="nav-link " data-drupal-link-system-path="node/11650">Partners</a>
</li>
<li>
<a href="/about/careers" class="nav-link " data-drupal-link-system-path="node/18775">Careers</a>
</li>
<li>
<a href="/about/our-leadership-team" class="nav-link " data-drupal-link-system-path="node/11659">Our Team</a>
</li>
<li>
<a href="/products" class="nav-link " data-drupal-link-system-path="node/25940">Our Products</a>
</li>
<li>
<a href="/solutions" class="nav-link " data-drupal-link-system-path="node/14687">Our Solutions</a>
</li>
</ul>
</div>
<div class="menu-item--expanded col-lg">
<h3> <a href="/contact-us" class="nav-link " data-drupal-link-system-path="node/11398">GET IN TOUCH</a>
</h3> <ul class="menu list-unstyled d-none d-lg-block">
<li>
<a href="/support" class="nav-link " data-drupal-link-system-path="node/11469">Support</a>
</li>
<li>
<a href="/pricing" class="nav-link " data-drupal-link-system-path="node/18717">Request Pricing</a>
</li>
<li>
<a href="/cdn-cgi/l/email-protection#93fafdf5fcd3f5fce1e7e1f2bdf0fcfeace0e6f1f9f6f0e7aef5fce1e7e1f2bee4f6f1e0fae7f6" class="nav-link "><span class="__cf_email__" data-cfemail="066f686069466069747274672865696b">[email protected]</span></a>
</li>
<li>
<a href="/resources/fortra-subscription-center" class="nav-link " data-drupal-link-system-path="node/15217">Join Our Mailing List</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="row copyright">
<div class="col">
<section class="row region region-footer-bottom">
<div id="block-footercopyright-2" class="block block-block-content block-block-contentcc7dac8f-10b8-4d21-996d-c6894e7edcf0">
<div class="content">
<div class="col">
<h3 class="d-inline-block"><a href="/privacy-policy">Privacy Policy</a></h3>
<h3 class="d-inline-block"><a href="/cookie-policy">Cookie Policy</a></h3>
<h3 class="d-inline-block"><a href="/terms-of-service">Terms of Service</a></h3>
<h3 class="d-inline-block"><div id="teconsent"></div></h3>
<h3 class="d-inline-block"><a href="/about/accessibility">Accessibility</a></h3>
<h3 class="d-inline-block"><a href="/trust/ai-use">Fortra AI Use</a></h3>
<h3 class="d-inline-block"><a href="/impressum">Impressum</a></h3>
Copyright © Fortra, LLC and its group of companies. Fortra®, the Fortra® logos, and other identified marks are proprietary trademarks of Fortra, LLC.
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
</div>
</div>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="application/json" data-drupal-selector="drupal-settings-json">{"path":{"baseUrl":"\/","pathPrefix":"","currentPath":"node\/24009","currentPathIsAdmin":false,"isFront":false,"currentLanguage":"en"},"pluralDelimiter":"\u0003","suppressDeprecationErrors":true,"ajaxTrustedUrl":{"form_action_p_pvdeGsVG5zNF_XLGPTvYSKCf43t8qZYSwcfZl2uzM":true},"user":{"uid":0,"permissionsHash":"32162761d5973478213b4d717a12e1db6e518ba84d6704f5c1944cd686340ec4"}}</script>
<script src="/core/assets/vendor/jquery/jquery.min.js?v=3.7.1"></script>
<script src="/core/assets/vendor/once/once.min.js?v=1.0.1"></script>
<script src="/core/misc/drupalSettingsLoader.js?v=10.6.13"></script>
<script src="/core/misc/drupal.js?v=10.6.13"></script>
<script src="/core/misc/drupal.init.js?v=10.6.13"></script>
<script src="/themes/composer/bootstrap_barrio/js/barrio.js?v=10.6.13"></script>
<script src="/themes/composer/bootstrap_barrio/js/affix.js?v=10.6.13"></script>
<script src="/core/misc/debounce.js?v=10.6.13"></script>
<script src="/themes/custom/fortra_parent_2022/js/popper.min.js?tkt1x8"></script>
<script src="/themes/custom/fortra_parent_2022/js/accessible-nav.js?tkt1x8"></script>
<script src="/themes/custom/fortra_parent_2022/js/faqs.js?tkt1x8"></script>
<script src="/themes/custom/fortra_parent_2022/js/global.js?v=10.1.46"></script>
<script src="/themes/custom/fortra_parent_2022/js/iframeResizer.min.js?v=10.1.46"></script>
<script src="/themes/custom/fortra_parent_2022/js/pardot-iframe.js?v=10.1.46"></script>
<script src="/themes/custom/fortra_parent_2022/js/widget.js?v=10.1.46"></script>
<script src="/themes/custom/fortra_parent_2022/js/widget-code.js?v=10.1.46"></script>
<script src="/themes/custom/hs/js/bootstrap.min.js?v=10.0.1"></script>
<script src="/themes/custom/hs/js/global.js?v=10.0.1"></script>
<script src="https://static.addtoany.com/menu/page.js"></script>
<script>(function(){function c(){var b=a.contentDocument||(a.contentWindow&&a.contentWindow.document);if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'a35cb0417d496e0d',t:'MTc4ODUyMTcwMg=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>
|