Go Back   Velocity Reviews > Newsgroups > Computer Security
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Computer Security - router security

 
Thread Tools Search this Thread
Old 12-30-2004, 03:47 AM   #1
Default Re: router security


On Thu, 30 Dec 2004 21:48:06 +0100, Christian Christmann wrote:

> Is it possible to get access to my Debian system
> through the router from outside? If so, how could
> an attack look like?


Try this site. They will scan your box from the outside for you.

https://www.grc.com/x/ne.dll?bh0bkyd2


--

Regards
Robert

Smile... it increases your face value!



Robert
  Reply With Quote
Old 12-30-2004, 08:48 PM   #2
Christian Christmann
 
Posts: n/a
Default router security
Hi,

I've a DSL router with a firewall. Behind this
router my Linux box is running.

Nmap indicates the following ports:

PORT STATE SERVICE
21/tcp open ftp (this is my forwarded xmule-port)
53/tcp closed domain
113/tcp closed auth
1720/tcp open H.323/Q.931
61441/tcp closed netprowler-sensor
65301/tcp closed pcanywhere

Is it possible to get access to my Debian system
through the router from outside? If so, how could
an attack look like?

Thanks
Chris


Christian Christmann
  Reply With Quote
Old 12-31-2004, 01:12 AM   #3
donnie
 
Posts: n/a
Default Re: router security
On Thu, 30 Dec 2004 21:48:06 +0100, Christian Christmann
<> wrote:

>Hi,
>
>I've a DSL router with a firewall. Behind this
>router my Linux box is running.
>
>Nmap indicates the following ports:
>
>PORT STATE SERVICE
>21/tcp open ftp (this is my forwarded xmule-port)
>53/tcp closed domain
>113/tcp closed auth
>1720/tcp open H.323/Q.931
>61441/tcp closed netprowler-sensor
>65301/tcp closed pcanywhere
>
>Is it possible to get access to my Debian system
>through the router from outside? If so, how could
>an attack look like?
>
>Thanks
>Chris

#########################
Am I correct in assuming that the router is behind the DSL modem w/ an
internal IP address and the gateway way for the router is the modem
which has an external IP? If so, then I take it that you ran nmap
from inside the network. If that's the case, try nmap from outside
the network using the modem external IP as the target. In other
words, try to crack your own network.
donnie.


donnie
  Reply With Quote
Old 12-31-2004, 04:33 AM   #4
Pete
 
Posts: n/a
Default Re: router security
On Wed, 29 Dec 2004 22:47:32 -0500, Robert <> wrote:

>On Thu, 30 Dec 2004 21:48:06 +0100, Christian Christmann wrote:


>Try this site. They will scan your box from the outside for you.
>
> https://www.grc.com/x/ne.dll?bh0bkyd2



Or this one :

http://scan.sygate.com/


Regards,

Pete.



Pete
  Reply With Quote
Old 12-31-2004, 11:12 PM   #5
Robert
 
Posts: n/a
Default Re: router security
On Sat, 01 Jan 2005 02:31:06 -0600, Chuck wrote:

> My impression is that GRC does a simple TCP connect to your ports of interest.
> NMap, as Donnie suggests, will do a more thorough test (I count over a dozen
> different selectable tests, including the TCP Connect). Unfortunately, you have
> to do an NMap scan yourself - I don't know of an NMap scanning website
> equivalent to the GRC NanoProbe.


And there in lies the problem. To check your security you will need to do
it from outside the network you are protecting. In this case you have a
few options:

1. Connect a machine outside the firewall and run NMap (which I agree is a
great program)

2. Find someone you trust and have them scan you.

3. Use a web based scanner. (the easiest to complete)

GRC will check all the known ports for you plus some more.



--

Regards
Robert

Smile... it increases your face value!



Robert
  Reply With Quote
Old 01-01-2005, 08:31 AM   #6
Chuck
 
Posts: n/a
Default Re: router security
On Wed, 29 Dec 2004 22:47:32 -0500, Robert <> wrote:

>On Thu, 30 Dec 2004 21:48:06 +0100, Christian Christmann wrote:
>
>> Is it possible to get access to my Debian system
>> through the router from outside? If so, how could
>> an attack look like?

>
>Try this site. They will scan your box from the outside for you.
>
> https://www.grc.com/x/ne.dll?bh0bkyd2


Robert,

My impression is that GRC does a simple TCP connect to your ports of interest.
NMap, as Donnie suggests, will do a more thorough test (I count over a dozen
different selectable tests, including the TCP Connect). Unfortunately, you have
to do an NMap scan yourself - I don't know of an NMap scanning website
equivalent to the GRC NanoProbe.

--
Cheers,
Chuck
Paranoia comes from experience - and is not necessarily a bad thing.


Chuck
  Reply With Quote
Old 01-03-2005, 01:15 AM   #7
Moe Trin
 
Posts: n/a
Default Re: router security
In article <> , Robert wrote:

>And there in lies the problem. To check your security you will need to do
>it from outside the network you are protecting.


Not totally true - but for most users (who don't know how to use the tools
their operating system already provides), you are probably going to get a
more reliable answer doing so.

>In this case you have a few options:
>
>1. Connect a machine outside the firewall and run NMap (which I agree is a
>great program)


Agreed

>2. Find someone you trust and have them scan you.
>
>3. Use a web based scanner. (the easiest to complete)


Though it often helps to turn up the logging while doing so, such that you
see what is being tested. VERY FEW web based scanners (or even nmap in a
default configuration) make a rigorous test of everything.

>GRC will check all the known ports for you plus some more.


Ummmm... oh, are they also testing imaginary ports too?

http://www.iana.org/assignments/protocol-numbers

lists 138 different protocols used over the wire - there are more than
TCP, UDP, ICMP. Of the more common protocols ALONE, TCP and UDP each have
65,536 different ports. ICMP, IGMP, GGP, EGP (and the other routing protocols)
don't use ports. Your provider may or may not support IPv6, which has it's
own bunch of protocols which are less standardized the the current IPv4
versions. Within IPv4 TCP (and UDP),

http://www.iana.org/assignments/port-numbers

identifies common usage of ports. However, these are just compatibility
recommendations. You could run a web server on port 74, and the network
police are not going to come and arrest you - it's just that not many
people will know to look there, so not many people will visit your site.
Also remember that no virus or trojan writer has bothered to register the
ports they are using at IANA, so the list doesn't include them.

Old guy



Moe Trin
  Reply With Quote
Old 01-07-2005, 05:35 PM   #8
Michael
 
Posts: n/a
Default Re: router security
Greetings, all!

I use a security service from NetChecker. They use NMap, SARA, and a bunch
of other scanning tools to get a more complete picture than just NMap alone.

Check them (us) out at www.netchecker.net for more info.

-Michael

"Robert" <> wrote in message
news e...
> On Sat, 01 Jan 2005 02:31:06 -0600, Chuck wrote:
>
> > My impression is that GRC does a simple TCP connect to your ports of

interest.
> > NMap, as Donnie suggests, will do a more thorough test (I count over a

dozen
> > different selectable tests, including the TCP Connect). Unfortunately,

you have
> > to do an NMap scan yourself - I don't know of an NMap scanning website
> > equivalent to the GRC NanoProbe.

>
> And there in lies the problem. To check your security you will need to do
> it from outside the network you are protecting. In this case you have a
> few options:
>
> 1. Connect a machine outside the firewall and run NMap (which I agree is a
> great program)
>
> 2. Find someone you trust and have them scan you.
>
> 3. Use a web based scanner. (the easiest to complete)
>
> GRC will check all the known ports for you plus some more.
>
>
>
> --
>
> Regards
> Robert
>
> Smile... it increases your face value!
>
>





Michael
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Computer Security Information and What You Can Do To Keep Your SystemSafe! Ann.Anderson.group.com@gmail.com A+ Certification 0 12-06-2007 01:55 AM
Computer Security aldrich.chappel.com.use@gmail.com A+ Certification 0 11-27-2007 02:11 AM
Computer Security Information (Free Articles and eBooks) aditya.jaiswal.com.use@gmail.com DVD Video 0 10-10-2007 04:53 AM
Problem Connecting Through Router Nobody404 General Help Related Topics 0 07-10-2007 11:28 PM
Adsl Router > Dual Wan Load Balancing Router > 24 port Switch Hub nazeth Hardware 0 03-28-2007 09:36 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46