-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcybersentinel.html
165 lines (127 loc) · 4.45 KB
/
cybersentinel.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TF3WKZS5Q4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-TF3WKZS5Q4');
</script>
<meta charset="utf-8">
<title>Cyber Sentinel</title>
<meta name="viewport" content="width=device-width, initial scale=1">
<!--<link rel="stylesheet" type="text/css" href="style.css">-->
<meta name="description" content="A web application demonstrating common vulnerabilities and their fixes">
<meta name="author" content="Suchit Reddi">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #007bff;
color: #fff;
text-align: center;
padding: 20px 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}
h1 {
margin-top: 0;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 20px 0;
}
@media screen and (max-width: 768px) {
.container {
padding: 10px;
}
}
button {
background-color: #3b93f1;
outline: none;
font-size: 16px;
cursor: pointer;
border: none;
padding: 10px;
color: white;
border-radius: 8%;
}
a {
font-size: 16px;
}
.button-box {
width: 100%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
</style>
</head>
<body>
<header>
<h1>Cyber Sentinel - Exploit and Patch Vulnerabilities ⚔</h1>
</header>
<div class="container">
<div class="button-box">
<a href="https://suchitreddi.github.io/Work/"> <button>Back</button></a>
<a href="https://suchitreddi.github.io/"> <button>Home</button></a>
</div>
<h2>Repositories</h2>
<h3><a href="https://github.com/SuchitReddi/cybersentinel" target="_blank"
rel="noopener noreferrer nofollow">GitHub</a></h3>
<h3><a href="https://hub.docker.com/r/5herl0ck/cybersentinel" target="_blank"
rel="noopener noreferrer nofollow">DockerHub</a></h3>
<h2>Documents</h2>
<p>
More information is available here to download this application on <a href="docs/setupw.html"
target="_blank" rel="noopener noreferrer nofollow">windows</a> and <a href="docs/setupl.html"
target="_blank" rel="noopener noreferrer nofollow">linux</a>.
</p>
<p><a href="README.html" target="_blank"><b>README</b></a> - The README file of this project.
</p>
<p><a href="docs/plan.html" target="_blank"><b>Plan of Action</b></a> - A crude plan I followed for this
project.
</p>
<p><a href="docs/cybersentinel_documentation.html" target="_blank">
<b>Complete Documentation</b></a> - A complete documentation containing all the below files for the
whole project.
</p>
<p><a href="docs/problem_statement.html" target="_blank"><b>Problem
Statement</b></a> - A basic explanation of the problem this project aims to solve.
</p>
<p><a href="docs/srs.html" target="_blank"><b>Software Requirements
Specification</b></a> - Requirements for smooth development of the project.
</p>
<p><a href="docs/dfd.html" target="_blank"><b>Data Flow Diagrams</b></a> - Describes how data is exchanged
between different entities in the project.
</p>
</div>
</div>
<footer>
<div class="footer-class">
<p>
<a href="mailto:rs521@snu.edu.in" target="_blank"
rel="noopener noreferrer nofollow"><button>Mail</button></a>
</p>
</div>
</footer>
</body>
</html>