Here’s how to check if port is listening on a Windows Server.
Log in to the destination server.
netstat -ano | find "443" | find "LISTEN" tasklist /fi "PID eq "443" |
cloud engineer
Here’s how to check if port is listening on a Windows Server.
Log in to the destination server.
netstat -ano | find "443" | find "LISTEN" tasklist /fi "PID eq "443" |
netstat -ano | find "443" | find "LISTEN" tasklist /fi "PID eq "443"
Here’s the command to test a network connection in Powershell.
C:> Test-NetConnection -ComputerName server -Port 443 |
C:> Test-NetConnection -ComputerName server -Port 443
Result:
ComputerName : server RemoteAddress : 10.0.0.5 RemotePort : 443 InterfaceAlias : Ethernet 0 SourceAddress : 10.1.1.34 TcpTestSucceeded : True |
ComputerName : server RemoteAddress : 10.0.0.5 RemotePort : 443 InterfaceAlias : Ethernet 0 SourceAddress : 10.1.1.34 TcpTestSucceeded : True
Here’s the Splunk search for Tanium clients reporting to the Tanium server.
"data.jsonPayload.rule_details.direction"=EGRESS "data.jsonPayload.connection.src_ip"="10.0.0.1" "data.jsonPayload.connection.dest_port"=17472 |
"data.jsonPayload.rule_details.direction"=EGRESS "data.jsonPayload.connection.src_ip"="10.0.0.1" "data.jsonPayload.connection.dest_port"=17472