forked from noahpowers/ServerSetup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
testing-index.html
51 lines (50 loc) · 2.62 KB
/
testing-index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>User Testing </title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/9bc9872b8b.js"></script>
<style type="text/css">
slow-spin {animation-duration: 6s;}
</style>
</head>
<body style="background-color: #3f3f3f">
<div class="container-fluid">
<div class="jumbotron" style="max-height: 275px">
<h1>Phishing Payload Testing!</h1>
<p class="lead">This site is used for the simple task of validating which payloads will execute in the environment with security in place.</p>
<p class="lead">Please use the following browser: <i class="fab fa-internet-explorer fa-2x" style="color: #1EBBEE"></i> <span class="fa-stack fa-2x"><i class="fab fa-chrome fa-stack-1x"></i><i class="fas fa-ban fa-stack-2x slow-spin" style="color: Red;opacity: 0.5"></i></span></p>
</div>
<div class="row" style="text-align: center;min-height: 85px">
<div class="col-sm-1"></div>
<div class="col-sm-3">
<a class="btn btn-primary btn-lg" href="${link}" role="button" target="_blank">01 - First Payload</a>
</div>
<div class="col-sm-3">
<a class="btn btn-primary btn-lg" href="${link}" role="button" target="_blank">02 - Second Payload</a>
</div>
<div class="col-sm-3">
<a class="btn btn-primary btn-lg" href="${link}" role="button" target="_blank">03 - Third Payload</a>
</div>
<div class="col-sm-1"></div>
</div>
<!-- Break Line between Rows -->
<div class="row" style="text-align: center;min-height: 85px">
<div class="col-sm-1"></div>
<div class="col-sm-3">
<a class="btn btn-primary btn-lg" href="${link}" role="button" target="_blank">04 - Fourth Payload</a>
</div>
<div class="col-sm-3">
<a class="btn btn-primary btn-lg" href="${link}" role="button" target="_blank">05 - Fifth Payload</a>
</div>
<div class="col-sm-3">
<a class="btn btn-primary btn-lg" href="${link}" role="button" target="_blank">06 - Sixth Payload</a>
</div>
<div class="col-sm-1"></div>
</div>
</div>
</body>
</html>