2020-11-28 10:00:04 +01:00
|
|
|
#!/snap/bin/powershell
|
|
|
|
|
|
|
|
# Syntax: ./scan-ports.ps1
|
|
|
|
# Description: scans the network for open/closed ports
|
|
|
|
# Author: Markus Fleschutz
|
|
|
|
# Source: github.com/fleschutz/PowerShell
|
|
|
|
# License: CC0
|
|
|
|
|
|
|
|
$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
|