PowerShell/Scripts/scan-ports.ps1

33 lines
758 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
scan-ports.ps1
.DESCRIPTION
2021-09-24 17:19:49 +02:00
Scans the network for open/closed ports
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./scan-ports
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
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
}
}
}
exit 0