This repository was archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 2.25 KB
/
index.html
File metadata and controls
63 lines (60 loc) · 2.25 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
<!DOCTYPE html>
<html><head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<title>T2 Nmap Tool</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="new_tool.js"></script>
<link rel="stylesheet" href="new_tool.css">
</head>
<body>
<div class="main-holder text-center">
<b><h1 class="text-center"> NMAP Tool </h1></b>
<i><p class="text-center">Note: This cannot scan internally. Limited to Public IP Addresses.</p></i><p><i></i>
<input class="test-box" placeholder="Ex: 45.33.32.156 (scanme.nmap.org)">
<br>
<br>
<button class="default div-center" onclick="clicker()">Scan</button>
<button class="danger" onclick="clearOut()">Clear</button>
<button class="danger" onclick="window.location.href='http://phonetools.net/t2/nmap/history'">History</button>
</p><div class="nmap-options">
<br>
<form class="the-form">
<select class="select-list-type" name="type">
<option value="selected" selected="selected">Scan Type</option>
<option value="speedy">Speedy</option>
<option value="standard">Standard</option>
<option value="aggressive">Aggressive</option>
</select>
<br>
<br>
</form>
<u><h3 class='text-center'>Results</h3></u>
</div>
<pre class="output card-effect"></pre>
<br>
<div class="other-info">
<div class="ip-info-div">
<u><h3 class="text-center">IP Info</h3></u>
<pre class="ip-info card-effect"></pre>
</div>
<div class="links-div">
<u><h3 class="text-center">Port Links</h3></u>
<div class="links card-effect"></div>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="trace-div">
<u><h3 class="text-center">UDP Trace From NMAP Server</h3></u>
<pre class="trace-info card-effect"></pre>
</div>
<br>
<br>
</body>