-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathlandingpageContent.js
More file actions
156 lines (154 loc) · 5.52 KB
/
landingpageContent.js
File metadata and controls
156 lines (154 loc) · 5.52 KB
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
// SPDX-FileCopyrightText: the secureCodeBox authors
//
// SPDX-License-Identifier: Apache-2.0
const content = {
automatedTesting: {
cards: [
{
title: "Powerful Scanning Tools",
description:
"Combines more than 15 different Scanners to provide a comprehensive overview of threats and vulnerabilities affecting your network and applications.",
imgSrc: "/img/features/scanning.svg",
},
{
title: "SDLC",
description:
"Easily integrate the secureCodeBox into your CI/CD pipeline or Kubernetes environment with automated feedbacks.",
imgSrc: "/img/features/sdlc.svg",
},
{
title: "Multi-Layer Testing",
description:
"Allowing security tests on different layers – from deep dive Scans of single Applications to large-scale scanning of complete it landscapes.",
imgSrc: "/img/features/testing.svg",
},
{
title: "Easy Monitoring",
description:
"Easily monitor each scanner's results through pre-designed or customised dashboards, use a tool integration such as. DefectDojo or integrate persistence tool of your choice.",
imgSrc: "/img/features/monitoring.svg",
},
],
},
useCases: {
title: "Security Use Cases",
description:
"Flexible configuration options make it possible to apply the secureCodeBox to a wide range of use cases, addressing security professionals as well as DevOps Teams. Discover the possibilities:",
items: [
{
title: "For Dev-Teams:",
content:
"Scan your applications to identify low-hanging fruit issues in an early stage during the development process and free the resources of pen-testers to concentrate on major security issues.",
},
{
title: "For Ops-Teams:",
content:
"Orchestrate and perform continuous and automated routine scans of your applications in the live environment and thereby reduce vulnerability risks.",
},
{
title: "For Sec-Teams:",
content:
"Use the secureCodeBox to run security scans on large-scale networks and identify vulnerabilities alongside your organization’s infrastructure.",
},
],
},
goToSolution: {
title: "Your Go-to Solution for easy Security Scanning",
description:
"secureCodeBox offers a well-documented and beginner-friendly introduction to the world of DevSecOps:",
image: "/img/Desktop_Screenshots.png",
list: [
{
label: "Quick & easy installation",
content:
"It's a quick and straight forward installation. It works on every system and is ready to use from start.",
},
{
label: "For professionals and rookies",
content:
"You can start scans without any configuration right away and use best practice tests. But each scanner also provides extensive configuration options.",
},
{
label: "Plug-and-play Architecture",
content:
"Our architecture is designed for open flexibility and free adjustments. New tools can be integrated fairly simple and you can design your own scan and monitor process.",
},
{
label: "Fully scalable",
content:
"Separately configurable for multiple teams, systems or clusters.",
},
],
},
multiScanner: {
title: "Multi Scanner Security Platform",
description:
"Combining more than 15 leading Open-Source Scanning Tools secureCodeBox covers a broad spectrum of possible threats and vulnerabilities for your network and applications; ranging from Kubernetes vulnerabilities, over SSL misconfigurations, to network authentication bruteforcing and many more:",
},
about: {
title: "About us",
description:
"secureCodeBox is an Open-Source project in cooperation with OWASP and with friendly support from",
question: "Do you have questions or feedback about secureCodeBox?",
buttonHeader: "Get in contact and let us know:",
button: "Get in contact",
mail: {
recipient: "securecodebox@iteratec.com",
subject: "",
message: "",
},
roles: [
{
imageSrc: "/img/roles/robert.jpg",
name: "Robert Felber",
role: "Project Lead",
},
{
imageSrc: "/img/roles/sven.jpg",
name: "Sven Strittmatter",
role: "Project Lead",
},
{
imageSrc: "/img/roles/jannik.jpg",
name: "Jannik Hollenbach",
role: "Project Lead",
},
{
imageSrc: "/img/roles/ilyes.jpg",
name: "Ilyes Ben Dlala",
role: "Project Lead",
},
],
},
sponsors: {
title: "Sponsors",
logos: [
{
srcLight: "/img/Logo_iteratec_rgb_black_SZ_rz.svg",
srcDark: "/img/Logo_iteratec_rgb_white_SZ_rz.svg",
link: "https://www.iteratec.com/",
},
{
srcLight: "/img/sponsors/Logo_sda-se.png",
srcDark: "/img/sponsors/Logo_sda-se.png",
link: "https://sda.se/",
},
{
srcLight: "/img/sponsors/Logo_secura.svg",
srcDark: "/img/sponsors/Logo_secura.svg",
link: "https://www.secura.com/",
},
{
srcLight: "/img/sponsors/Logo_signal-iduna.svg",
srcDark: "/img/sponsors/Logo_signal-iduna.svg",
link: "https://www.signal-iduna.de/",
},
{
srcLight: "/img/sponsors/Logo_timo-pagel-it-consulting.png",
srcDark: "/img/sponsors/Logo_timo-pagel-it-consulting.png",
link: "https://pagel.pro/",
},
],
},
};
export default content;