All public logs
From Cheatsheet
Jump to navigationJump to search
Combined display of all available logs of Cheatsheet. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 21:59, 28 July 2023 Patrick talk contribs created page Powershell (Created page with "Category:Cheatsheet == Checks == * https://azega.org/list-open-ports-using-powershell/ <syntaxhighlight lang='bash'> # List open ports and related IP-addresses Get-NetTCPConnection # "To show only the listening ports we need to filter for all items in the Listen state with the remote address of 0.0.0.0" get-nettcpconnection | where {($_.State -eq "Listen") -and ($_.RemoteAddress -eq "0.0.0.0")} # "You can add additional fields like the process ID for each port. C...")