2021-04-07 11:53:57 +02:00
|
|
|
#!/usr/bin/pwsh
|
2020-12-29 15:14:21 +01:00
|
|
|
<#
|
2021-04-07 15:17:49 +02:00
|
|
|
.SYNTAX scan-ports.ps1
|
2021-03-22 20:10:18 +01:00
|
|
|
.DESCRIPTION scans the network for open/closed ports
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit 0
|