-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (80 loc) · 2.81 KB
/
index.html
File metadata and controls
87 lines (80 loc) · 2.81 KB
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
<!DOCTYPE html>
<html>
<head>
<title>ZeroDayLab - Open Source Projects</title>
<meta charset="utf-8" />
<script type="text/javascript" language="javascript" src="js/scripts.js"></script>
<link rel="stylesheet" type="text/css" href="css/simplegrid.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link href='http://fonts.googleapis.com/css?family=Raleway:200,100,400' rel='stylesheet' type='text/css'>
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
</head>
<body onLoad="preloadImages('img/service-icon-05-red.png','img/metasploit-icon-red.png')">
<!-- ZDL HEADER -->
<div class="header1">
<div class="headerContent grid grid-pad">
<div class="col-1-2 header-content">
<div class="logozdl"/>
<a href="https://github.com/zerodaylab">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="img/fmog.png" alt="Fork me on GitHub">
</a>
</div>
</div>
</div>
<!-- IMG HEADER -->
<div class="header">
<div class="headerContent grid loggrid-pad">
</div>
</div>
<!-- MAIN() PROJECTS -->
<div class="grid grid-pad">
<div class="features">
<h1>
Open Source Projects
</h1>
</div>
<div class="col-1-2 icon-box">
<div class="content">
<a href="https://github.com/zerodaylab/Security-Tools/">
<img src="img/service-icon-05.png" alt="Security Tools" id="st1"
onmouseover="swapImage('st1','','img/service-icon-05-red.png',1)" onmouseout="swapImgRestore()">
</a>
<h2>
Security Tools
</h2>
<p>
A collection of security tools for reconnaissance, enumeration, and exploitation of systems.
The toolkit is developed and maintained by the ZeroDayLab team.
</p>
</div>
</div>
<div class="col-1-2 icon-box">
<div class="content">
<a href="https://github.com/zerodaylab/metasploit-modules/">
<img src="img/metasploit-icon.png" alt="Metasploit Modules" id="mm1"
onmouseover="swapImage('mm1','','img/metasploit-icon-red.png',1)" onmouseout="swapImgRestore()">
</a>
<h2>
Metasploit Modules
</h2>
<p>
A repository of custom Metasploit modules. <br/>
<i>Coming soon...</i>
</p>
</div>
</div>
</div>
<!-- FOOTER -->
<div id="footer">
<div id="footContent">
<div id="footerMid"><img src="img/flogo.gif" width="179" height="35" alt="Zero Day Lab"/><br/> ©2014 All Rights Reserved</div>
</div>
</div>
</body>
</html>