mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
28 lines
724 B
PowerShell
Executable File
28 lines
724 B
PowerShell
Executable File
#!/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"
|
|
$port = 8000
|
|
$range = 1..254
|
|
$ErrorActionPreference= "silentlycontinue"
|
|
|
|
foreach ($add in $range) {
|
|
$ip = "{0}.{1}" -F $network,$add
|
|
Write-Progress "Scanning Network" $ip -PercentComplete (($add/$range.Count)*100)
|
|
if (Test-Connection -BufferSize 32 -Count 1 -quiet -ComputerName $ip) {
|
|
$socket = new-object System.Net.Sockets.TcpClient($ip, $port)
|
|
if ($socket.Connected) {
|
|
write-host "$ip port $port open"
|
|
$socket.Close()
|
|
} else {
|
|
write-host "$ip port $port not open"
|
|
}
|
|
}
|
|
}
|
|
exit 0
|