LOULOU Posted October 30, 2005 Posted October 30, 2005 How can i do for testing if a port (8443) is open or closed on the computer ?
Nuffilein805 Posted October 30, 2005 Posted October 30, 2005 have you already tried to connect to this port? do you run a server on the other pc? my little chatmy little encryption toolmy little hidermy unsafe clickbot
flyingboz Posted October 30, 2005 Posted October 30, 2005 have you already tried to connect to this port?do you run a server on the other pc?If you're at the computer netstat -a -n | find "LISTENING" will find all open TCP / UDP ports.Piping the result through your port number will also work, i.e. netstat -a -n | find "LISTENING" | find 25 to see all processes bound to port 25 (default SMTP port) Reading the help file before you post... Not only will it make you look smarter, it will make you smarter.
Confuzzled Posted October 30, 2005 Posted October 30, 2005 (edited) How can i do for testing if a port (8443) is open or closed on the computer ? Shields Up at www.grc.com has a good port test suite. See also http://www.seifried.org/security/ports/8000/8443.html Edited October 30, 2005 by Confuzzled
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now