-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathport-scanner.php
executable file
·161 lines (145 loc) · 4.25 KB
/
port-scanner.php
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
158
159
160
161
<?php
require("core.php");
head();
?>
<div class="content-wrapper">
<!--CONTENT CONTAINER-->
<!--===================================================-->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1 class="m-0 text-dark"><i class="fas fa-search"></i> Port Scanner</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="dashboard.php"><i class="fas fa-home"></i> Admin Panel</a></li>
<li class="breadcrumb-item active">Port Scanner</li>
</ol>
</div>
</div>
</div>
</div>
<!--Page content-->
<!--===================================================-->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-9">
<div class="card">
<div class="card-header">
<h3 class="card-title">Port Scanner</h3>
</div>
<div class="card-body">
<form method="post" >
IP / Domain:
<input type="text" class="form-control" name="ipdomain" placeholder="example.com" required/><br />
<input type="submit" class="btn btn-primary btn-block btn-flat" value="Scan" />
</form>
</div>
</div>
<?php
if (!empty($_POST['ipdomain'])) {
$ports = array(
20,
21,
22,
23,
25,
53,
80,
110,
119,
135,
137,
138,
139,
143,
443,
520,
1433,
1434,
1723,
2082,
2086,
2095,
3306,
8080
);
$results = array();
foreach ($ports as $port) {
if ($pf = @fsockopen($_POST['ipdomain'], $port, $err, $err_string, 1)) {
$results[$port] = true;
fclose($pf);
} else {
$results[$port] = false;
}
}
echo '<div class="card">
<div class="card-header">
<h3 class="card-title">Scan results for <b>' . $_POST['ipdomain'] . '</b></h3>
</div>
<div class="card-body">';
echo '<div class="table-responsive"><table class="table table-bordered table-hover">
<thead>
<tr>
<th><i class="fas fa-dot"></i> Port</th>
<th><i class="fas fa-cogs"></i> Service</th>
<th><i class="fas fa-info-circle"></i> Status</th>
</tr>
</thead>
<tbody>';
foreach ($results as $port => $val) {
$prot = getservbyport($port, "tcp");
echo "<tr><td>$port</td><td>$prot</td>";
if ($val) {
echo '<td><a href="http://' . $_POST['ipdomain'] . ':' . $port . '" target="_blank" class="badge badge-danger" style="font-size: 13px;"><i class="fas fa-unlock"></i> Open</a></td></tr>';
} else {
echo '
<td><font class="badge badge-success" style="font-size: 13px;"><i class="fas fa-lock"></i> Closed</font></td></tr>';
}
}
echo '</tbody>
</table></div>';
echo '</div></div></div>';
} else {
echo '</div>';
}
?>
<div class="col-md-3">
<div class="card">
<div class="card-header">
<h3 class="card-title">What is Port Scanning</h3>
</div>
<div class="card-body">
Port Scanning is the name for the technique used to identify open ports and services available on a network host. Port Scanning is used to determine which ports are open and vulnerable to attacks.
<br /><br />
Port Scanning is a slow proccess and can take a while.
</div>
</div>
</div>
</div>
</div>
</div>
<!--===================================================-->
<!--End page content-->
</div>
<!--===================================================-->
<!--END CONTENT CONTAINER-->
</div>
<script>
$(document).ready(function() {
$('#dt-basic').dataTable( {
"responsive": true,
"language": {
"paginate": {
"previous": '<i class="fas fa-angle-left"></i>',
"next": '<i class="fas fa-angle-right"></i>'
}
}
} );
} );
</script>
<?php
footer();
?>