2023-10-31 13:03:45 +01:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Scans the network for open/closed ports
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-30 10:49:30 +01:00
|
|
|
|
This PowerShell script scans the network for open or closed ports.
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./scan-ports
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-30 10:49:30 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
|
#>
|
2020-11-28 10:00:04 +01:00
|
|
|
|
|
|
|
|
|
$network = "192.168.178"
|
2020-11-28 18:06:55 +01:00
|
|
|
|
$port = 8080
|
2020-11-28 10:00:04 +01:00
|
|
|
|
$range = 1..254
|
|
|
|
|
$ErrorActionPreference= "silentlycontinue"
|
|
|
|
|
|
2020-11-28 18:06:55 +01:00
|
|
|
|
foreach($add in $range) {
|
2020-11-28 10:00:04 +01:00
|
|
|
|
$ip = "{0}.{1}" -F $network,$add
|
2020-12-25 11:30:43 +01:00
|
|
|
|
write-progress "Scanning IP $ip" -PercentComplete (($add/$range.Count)*100)
|
2020-11-28 10:00:04 +01:00
|
|
|
|
if (Test-Connection -BufferSize 32 -Count 1 -quiet -ComputerName $ip) {
|
|
|
|
|
$socket = new-object System.Net.Sockets.TcpClient($ip, $port)
|
|
|
|
|
if ($socket.Connected) {
|
2020-12-25 11:30:43 +01:00
|
|
|
|
write-output "TCP port $port at $ip is open"
|
2020-11-28 10:00:04 +01:00
|
|
|
|
$socket.Close()
|
|
|
|
|
} else {
|
2020-12-25 11:30:43 +01:00
|
|
|
|
write-output "TCP port $port at $ip is not open"
|
2020-11-28 10:00:04 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|