-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity-policy.html
60 lines (53 loc) · 2.36 KB
/
security-policy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Policy</title>
<link rel="stylesheet" href="style.css">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
}
#name {
font-weight: bold;
font-size: 1.8em;
margin-bottom: 20px;
}
p, h2, ul {
margin: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<div id="content">
<span id="name">Security Policy</span>
<p>
As a cybersecurity researcher and student at Western Michigan University, I am committed to maintaining the security and integrity of this site. If you identify any security vulnerabilities, I encourage responsible disclosure to help improve the safety of this platform.
</p>
<h2>Scope</h2>
<p>This policy covers all pages and content at <a href="https://lochlanmcelroy.com">lochlanmcelroy.com</a> and its associated subdomains.</p>
<h2>Reporting a Vulnerability</h2>
<p>If you discover a vulnerability, please report it by contacting me at <a href="mailto:[email protected]">[email protected]</a>. Include a detailed description and steps to reproduce the issue, so I can address it effectively.</p>
<h2>Guidelines</h2>
<ul style="list-style-type: none; padding: 0;">
<li>Refrain from actions that may compromise privacy, degrade user experience, disrupt website functionality, or result in data loss.</li>
<li>Use non-destructive testing methods and avoid automated scanning that could affect site availability.</li>
<li>Allow adequate time for me to review and address the issue before any public disclosure.</li>
</ul>
<p>Your contributions to making this site secure are deeply valued. Thank you for helping me build a safe and trustworthy online presence.</p>
</div>
</div>
</body>
</html>