diff --git a/Windows-Scripts/scan_subnets_for_port.ps1 b/Windows-Scripts/scan_subnets_for_port.ps1 new file mode 100644 index 0000000..541c8f4 --- /dev/null +++ b/Windows-Scripts/scan_subnets_for_port.ps1 @@ -0,0 +1,20 @@ +Param( + [string]$hosts_file = "subnets.txt", + [int]$delay_seconds = 120, + [int]$port = 5555, + [bool]$ChkDsk = $false +) + +# infinitte looppsie +$counter = 1 +while($True) { + Clear-Host # this ig iss the new clear/cls + + Write-Host "Scanning $subnet for port $port loop count $counter`n" + # only show open ports, disable ping host check, output to stdout in greppable format on specified port for all subnets in hosts file + nmap --open -Pn -oG - -p $port -iL "$hosts_file" + $counter++ + + Write-Host "`nSleeping $delay_seconds Seconds`n" + Start-Sleep -Seconds $delay_seconds +} \ No newline at end of file diff --git a/Windows-Scripts/subnets.txt b/Windows-Scripts/subnets.txt new file mode 100644 index 0000000..d655720 --- /dev/null +++ b/Windows-Scripts/subnets.txt @@ -0,0 +1,5 @@ +10.0.0.0/24 +10.0.2.0/24 +10.0.1.0/24 +192.168.56.0/24 +172.18.208.0/24 \ No newline at end of file diff --git a/Windows-Scripts/sync_media.ps1 b/Windows-Scripts/sync_media.ps1 index 93e2ad8..804331c 100644 --- a/Windows-Scripts/sync_media.ps1 +++ b/Windows-Scripts/sync_media.ps1 @@ -1,7 +1,10 @@ $media_viewer_dir="C:\Users\human\OneDrive\Documents\Git\Media-Viewer" Set-Location "$media_viewer_dir" -Write-Host "Sillyfillyy synching media lolee" +Write-Host "`nSillyfillyy synching media loleen`n" + +Write-Host "`nChanging directory to Media-Viewer`n" +cd "$media_viewer_dir" # get da synciedink Write-Host "`nSyncing`n" @@ -31,4 +34,4 @@ gitsync Write-Host "`nSyncing finaly again`n" gitsync -Write-Host "aahm done bein a sillyfilly fro noew" +Write-Host "`naahm done bein a sillyfilly fro noew`n"