forked from aabeling/portscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 844 Bytes
/
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
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"
type="text/javascript"></script>
<script
src="portscanner.js"
type="text/javascript"></script>
<script>
$(document).ready(function() {
portscanner.init();
});
</script>
</head>
<body>
<table>
<tr>
<th>host:port</th>
<th>status</th>
</tr>
<tr>
<td>github.com:443</td>
<td><span class="portscanner">github.com:443</span></td>
</tr>
<tr>
<td>github.com:80</td>
<td><span class="portscanner">github.com:80</span></td>
</tr>
<tr>
<td>github.com:8080</td>
<td><span class="portscanner">github.com:8080</span></td>
</tr>
<tr>
<td>localhost:8000</td>
<td><span class="portscanner">localhost:8000</span></td>
</tr>
</table>
</body>
</html>