-
Notifications
You must be signed in to change notification settings - Fork 0
/
attacks-1.html
157 lines (133 loc) · 3.55 KB
/
attacks-1.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
<!DOCTYPE html>
<html>
<head>
<title>CYBERTHREAT REAL-TIME MAP</title>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<style>
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Georgia, 'Times New Roman', Times, serif;
}
th {
color: white;
background-color: black;
}
th,
td,
p,
input {
padding-left: 20px;
padding-right: 20px;
font: 18px;
}
table,
th,
td {
margin: auto;
border: solid 2px #DDD;
padding: 5px 30px;
text-align: center;
}
th {
font-weight: bold;
}
.summary {
padding-top: 50px;
padding-left: 150px;
padding-right: 150px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
header {
width: 100%;
position: relative;
top: 0;
height: 50px;
text-align: center;
line-height: 50px;
font-size: 30px;
padding-bottom: 20px;
}
.inputbox {
display: flex;
position: relative;
margin-top: 40px;
}
.input {
height: 35px;
width: 220px;
outline: none;
text-indent: 5px;
}
.button {
height: 35px;
width: 43px;
background-color: black;
text-align: center;
line-height: 35px;
color: #fff;
margin-bottom: 20px;
}
.headerFormat {
font-size: 28px;
margin-top: 55px;
}
.myFooter {
padding-right: 250px;
text-align: right;
margin: 50px
}
</style>
<body>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Kapersky</th>
<th scope="col">Fortinet</th>
</tr>
</thead>
<tbody>
<tr>
<td class="headerFormat Kapersky">
<iframe width="640" height="640" src="https://cybermap.kaspersky.com/" frameborder="0"></iframe>
</td>
<td class="headerFormat Fortinet">
<iframe width="640" height="640" src="https://threatmap.fortiguard.com/" frameborder="0"></iframe>
</td>
</tr>
</tbody>
</table>
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Bitdefender</th>
<th scope="col">CheckPoint</th>
</tr>
</thead>
<tbody>
<tr>
<td class="headerFormat Bitdefender">
<iframe width="640" height="640" src="https://threatmap.bitdefender.com/" frameborder="0"></iframe>
</td>
<td class="headerFormat CheckPoint">
<iframe width="640" height="640" src="https://threatmap.checkpoint.com/" frameborder="0"></iframe>
</td>
</tr>
</tbody>
</table>
<footer>
<div class="myFooter">
Developed by: ChavaZystem 2021<br>
</div>
</footer>
</body>
</html>