107 lines
3.7 KiB
HTML
107 lines
3.7 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Damn Website Scanner</title>
|
|
<style>
|
|
body {
|
|
font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
|
|
font-size: 100%;
|
|
text-align: center;
|
|
}
|
|
#content{
|
|
margin-bottom: 20px;
|
|
}
|
|
#info {
|
|
display: block;
|
|
width: 250px;
|
|
margin: 0 auto;
|
|
text-align: left;
|
|
}
|
|
#stop, #export, #refresh{
|
|
width: 100px;
|
|
padding: 8px;
|
|
display: inline-block;
|
|
margin: 0 auto;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
color: white;
|
|
background-image: -webkit-linear-gradient(top,#5cb85c,#4cae4c);
|
|
font-family: arial;
|
|
font-weight: bold;
|
|
line-height: 30px;
|
|
box-shadow: 0px 2px 0px #553634, 0px 3px 3px #888;
|
|
opacity: 1;
|
|
}
|
|
#stop:hover, #export:hover, #refresh:hover{
|
|
opacity: 0.9;
|
|
}
|
|
#export{
|
|
background-image: -webkit-linear-gradient(top,#42A5F5,#2196F3);
|
|
}
|
|
#refresh{
|
|
background-image: -webkit-linear-gradient(top,#00BFA5,#26A69A);
|
|
}
|
|
#debug{
|
|
margin-top: 20px;
|
|
}
|
|
.datagrid table { border-collapse: collapse; text-align: left; width: 100%; }
|
|
.datagrid {font: normal 12px/150% Arial, Helvetica, sans-serif; background: #fff; overflow: hidden; border: 1px solid #006699; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; }
|
|
.datagrid table td, .datagrid table th { padding: 3px 16px; }
|
|
.datagrid table thead th {background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #006699), color-stop(1, #00557F) );background:-moz-linear-gradient( center top, #006699 5%, #00557F 100% );filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#006699', endColorstr='#00557F');background-color:#006699; color:#FFFFFF; font-size: 15px; font-weight: bold; border-left: 1px solid #0070A8; }
|
|
.datagrid table thead th:first-child {padding:8px; border: none; }
|
|
.datagrid table tbody td {padding:8px; color: #00557F; border-left: 1px solid #E1EEF4;font-size: 12px;font-weight: normal; }
|
|
.datagrid table tbody .alt td { background: #E1EEf4; color: #00557F; }
|
|
.datagrid table tbody td:first-child { border-left: none; }.datagrid table tbody tr:last-child td { border-bottom: none; }
|
|
.datagrid{ width: 70%; margin: 0 auto; margin-bottom: 20px;}
|
|
.hidden{
|
|
display: none;
|
|
}
|
|
</style>
|
|
<script src="popup.js"></script>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<h3>Damn Website Scanner - List of vulnerabilities</h3>
|
|
|
|
<div id="content">
|
|
<span id='url' class='hidden'>
|
|
<a href='http://example.com'>http://limited.url</a>
|
|
</span>
|
|
|
|
<div class="datagrid">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Type</th>
|
|
<th>URL of the vulnerability</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody id='list'>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<p><span id='total'>Total : 0 vulnerability found</span></p>
|
|
|
|
<ul id="info">
|
|
<li><span id='xss'>0 Cross Site Scripting</span></li>
|
|
<li><span id='sql'>0 Injection SQL</span></li>
|
|
<li><span id='lfi'>0 Local File Inclusion</span></li>
|
|
<li><span id='rce'>0 Remote Commands Execution</span></li>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- Used only to display debug informations-->
|
|
<a href='#stop' id='stop'>START</a>
|
|
<a href='./vulns.html' id='refresh'>REFRESH</a>
|
|
<a href='#export' id='export'>EXPORT</a>
|
|
<div id='debug'>
|
|
<span id='status'>Status Server</span>
|
|
</div>
|
|
</body>
|
|
</html> |