-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhidden.html
135 lines (122 loc) · 6.06 KB
/
hidden.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
<html>
<head>
<meta charset="utf-8">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="css\css.css">
<link rel="stylesheet" href="css\bootstrap.min.css">
<title>Hidden</title>
<style>
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-light" data-bs-theme="light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarColor03" aria-controls="navbarColor03" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor03">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link active" href="hidden.html"><em>Home</em>
<span class="visually-hidden">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Q&A.html">Q&A</a>
</li>
<li class="nav-item">
<a class="nav-link" href="tools.html">Tools</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Me</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Separated link</a>
</div>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-sm-2" type="search" placeholder="Search">
<button class="btn btn-secondary my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- Add spacing between buttons and nav -->
<div class="more-custom-spacing"></div>
<!--<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-light">Light</button>
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-link">Link</button>
<div class="more-custom-spacing"></div>-->
<section class="jumbotron text-center">
<div class="container">
<h1 class="jumbotron-heading">You have found the hidden page!</h1>
<p class="lead text-muted">Boost your cybersecurity know-how and stay safe online with our website.</p>
<p>
<a href="#" class="btn btn-primary my-2">Main call to action</a>
<a href="#" class="btn btn-secondary my-2">Secondary action</a>
</p>
</div>
</section>
<!-- Add spacing between areas -->
<div class="more-custom-spacing"></div>
<div class='container'>
<div class='row justify-content-center'>
<div class="card border-dark mb-3 mx-2" style="max-width: 20rem;">
<div class="card-header">Cyber</div>
<div class="card-body">
<h4 class="card-title">Tabnabbing</h4>
<p class="card-text">Tabnabbing is a computer exploit and phishing attack, which persuades users to submit their login details and passwords to popular websites by impersonating those sites and convincing the user that the site is genuine. The attack's name was coined in early 2010 by Aza Raskin, a security researcher and design expert.</p>
</div>
<div class="card-footer"><a class='btn btn-link' href='\tabnabbing\NSC.html'>Ex. Website</a></div>
</div>
<div class="card border-dark mb-3 mx-2" style="max-width: 20rem;">
<div class="card-header">Cyber</div>
<div class="card-body">
<h4 class="card-title">Link Manipulation</h4>
<p class="card-text">Link Manipulation is creating fake links that appear to be from a legitimate organization. These links may use misspelled URLs or subdomains to deceive the user.</p>
</div>
<div class="card-footer">Card footer</div>
</div>
<div class="card border-dark mb-3 mx-2" style="max-width: 20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Dark card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">Card footer</div>
</div>
<div class="card border-dark mb-3 mx-2" style="max-width: 20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Dark card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">Card footer</div>
</div>
<div class="card border-dark mb-3 mx-2" style="max-width: 20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title">Dark card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">Card footer</div>
</div>
</div>
</div>
<div class="more-custom-spacing"></div>
</body>
</html>