how do i scan my own ip for open ports
#1
Posted 26 August 2007 - 11:01 AM
anyone know why this would be?
#2
Posted 26 August 2007 - 11:22 AM
Try using something that isn't on your LAN to get an attackers prospective.
http://nmap-online.com/
#3
Posted 26 August 2007 - 11:48 AM
just tried that and it said host seems down,perhaps you have a firewall blocking all your ports and have nothing listening on your computer.
Try using something that isn't on your LAN to get an attackers prospective.
http://nmap-online.com/
does that mean i am fairly safe from attacks?
#4
Posted 26 August 2007 - 12:03 PM
#5
Posted 26 August 2007 - 01:24 PM
Read about NAT.
Scanning yourself from the same computer isn't very useful anyway. Which ports are "open" depends on not only programs bound to the port and listening for connections, but also software firewalls and any network hardware between you and whoever is scanning you. If you wish to scan yourself, have someone else run an nmap scan on your external IP address. If you're using NAT, it'll probably come up with nothing at all if you have no ports forwarded.
To simply see which ports have programs listening on them, you can use the netstat command.
So you need to clarify your question. Is your question "How do I see which ports are reachable from the Internet" or "How do I see which ports have programs listening on them?"
#6
Posted 26 August 2007 - 01:34 PM
#7
Posted 26 August 2007 - 01:38 PM
thanks just done itYou can do netstat -a to show all ports open or closed.
first i got it wrong because i just wrote netstat
got it right 2nd time with netstat -a
#8
Posted 27 August 2007 - 06:03 AM
#9
Posted 27 August 2007 - 06:22 AM
hi i used netstat, how do i find fport/tcpview?if your using windows take a look at fport/tcpview. It will display the same as netstat but map sockets to processes which is pretty good.
do i just search for it?
#10
Posted 27 August 2007 - 06:24 AM
#11
Posted 27 August 2007 - 06:51 AM
#12
Posted 27 August 2007 - 07:57 AM
hi i used netstat, how do i find fport/tcpview?if your using windows take a look at fport/tcpview. It will display the same as netstat but map sockets to processes which is pretty good.
do i just search for it?
yeah they are both freeware just google them.
fport is from foundstone and tcpview is from microsoft formelly sysinternals
#13
Posted 27 August 2007 - 08:01 AM
great info,i just want to scan my network so i can learn thingshi i used netstat, how do i find fport/tcpview?if your using windows take a look at fport/tcpview. It will display the same as netstat but map sockets to processes which is pretty good.
do i just search for it?
yeah they are both freeware just google them.
fport is from foundstone and tcpview is from microsoft formelly sysinternals
#14
Posted 27 August 2007 - 08:06 AM
i believe the classic answer to this question is https://www.grc.com/x/ne.dll?bh0bkyd2
The problem with shields up is it only scans the first 1024 ports by default. Considering you have 65535 ports it does not give you the big picture which could lead you to a false sense of security. Even if you chose to use one of there custom scans it would take you forever as you cant specify a big port range.
You could however use it with your findings from netstat to determine how good your firewall policies are.
#15
Posted 27 August 2007 - 08:46 AM
i know what your saying but is it possible to scan a few at a time then start from where my last port was and then keep doing that?if you know what i meani believe the classic answer to this question is https://www.grc.com/x/ne.dll?bh0bkyd2
The problem with shields up is it only scans the first 1024 ports by default. Considering you have 65535 ports it does not give you the big picture which could lead you to a false sense of security. Even if you chose to use one of there custom scans it would take you forever as you cant specify a big port range.
You could however use it with your findings from netstat to determine how good your firewall policies are.
#16
Posted 27 August 2007 - 08:47 AM
os is it best downloading the things you said and use them?i believe the classic answer to this question is https://www.grc.com/x/ne.dll?bh0bkyd2
The problem with shields up is it only scans the first 1024 ports by default. Considering you have 65535 ports it does not give you the big picture which could lead you to a false sense of security. Even if you chose to use one of there custom scans it would take you forever as you cant specify a big port range.
You could however use it with your findings from netstat to determine how good your firewall policies are.
#17
Posted 27 August 2007 - 02:31 PM
i know what your saying but is it possible to scan a few at a time then start from where my last port was and then keep doing that?if you know what i meani believe the classic answer to this question is https://www.grc.com/x/ne.dll?bh0bkyd2
The problem with shields up is it only scans the first 1024 ports by default. Considering you have 65535 ports it does not give you the big picture which could lead you to a false sense of security. Even if you chose to use one of there custom scans it would take you forever as you cant specify a big port range.
You could however use it with your findings from netstat to determine how good your firewall policies are.
You could do that but at a maximum it will allow you to do 1024 ports at a time. I actually think its less than that on the custom scan, however if you were to do that for all 65535 ports it would take you.
65535 / 1024 = 63.99
64 manual scans? i would not waste my time!
#18
Posted 27 August 2007 - 03:10 PM
You could do that but at a maximum it will allow you to do 1024 ports at a time. I actually think its less than that on the custom scan, however if you were to do that for all 65535 ports it would take you.
65535 / 1024 = 63.99
64 manual scans? i would not waste my time!
[/quote]
i know your right seems like a waste of time
#19
Posted 27 August 2007 - 03:26 PM
You could do that but at a maximum it will allow you to do 1024 ports at a time. I actually think its less than that on the custom scan, however if you were to do that for all 65535 ports it would take you.
65535 / 1024 = 63.99
64 manual scans? i would not waste my time!
Remember: when in computing, count from 0. One would expect that the number of ports is a power of 2 [2^16 in this case] so there are 65536 ports.
2^16 / 2^10 = 2^6 = 64 [it was the .99 that drew my attention in the first place]
I know, I know, I'm being pedantic...
#20
Posted 28 August 2007 - 04:41 AM
You could do that but at a maximum it will allow you to do 1024 ports at a time. I actually think its less than that on the custom scan, however if you were to do that for all 65535 ports it would take you.
65535 / 1024 = 63.99
64 manual scans? i would not waste my time!
Remember: when in computing, count from 0. One would expect that the number of ports is a power of 2 [2^16 in this case] so there are 65536 ports.
2^16 / 2^10 = 2^6 = 64 [it was the .99 that drew my attention in the first place]
I know, I know, I'm being pedantic...
Your right, school boy error my bad.
BinRev is hosted by the great people at Lunarpages!












