mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-16 17:51:28 +01:00
Updated the script
This commit is contained in:
parent
011722cd1d
commit
16adcce777
@ -7,20 +7,20 @@
|
||||
# License: CC0
|
||||
|
||||
$network = "192.168.178"
|
||||
$port = 8000
|
||||
$port = 8080
|
||||
$range = 1..254
|
||||
$ErrorActionPreference= "silentlycontinue"
|
||||
|
||||
foreach ($add in $range) {
|
||||
foreach($add in $range) {
|
||||
$ip = "{0}.{1}" -F $network,$add
|
||||
Write-Progress "Scanning Network" $ip -PercentComplete (($add/$range.Count)*100)
|
||||
Write-Progress "Scanning IP $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"
|
||||
write-host "TCP port $port at $ip is open"
|
||||
$socket.Close()
|
||||
} else {
|
||||
write-host "$ip port $port not open"
|
||||
write-host "TCP port $port at $ip is not open"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user