Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > Paranoid Virgin OS

Reply
Thread Tools Display Modes

Paranoid Virgin OS

 
 
Jerry
Guest
Posts: n/a

 
      08-18-2004
How realistic is the following: I do a fresh install of
Win 2K from a CD I bought 3 years ago. I put this fresh
new naked virgin OS right out on the Internet going
straight for Microsoft Windows Update. But since I have no
fixes or patches, is it possible that my computer could be
hacked/hijacked during this process? In other words how
safe is my connection to Microsoft.com while I'm trying to
download and install the Update?
 
Reply With Quote
 
 
 
 
gw
Guest
Posts: n/a

 
      08-18-2004
I wouldn't do it. Download the updates on a protected computer and burn to
CD, or at least install firewall/AV before connecting.

"Jerry" <> wrote in message
news:163c01c48557$9f59adc0$...
> How realistic is the following: I do a fresh install of
> Win 2K from a CD I bought 3 years ago. I put this fresh
> new naked virgin OS right out on the Internet going
> straight for Microsoft Windows Update. But since I have no
> fixes or patches, is it possible that my computer could be
> hacked/hijacked during this process? In other words how
> safe is my connection to Microsoft.com while I'm trying to
> download and install the Update?



 
Reply With Quote
 
Curtis Newton
Guest
Posts: n/a

 
      08-18-2004
On Wed, 18 Aug 2004 12:14:45 -0700, "Jerry"
<> wrote:

>How realistic is the following: I do a fresh install of
>Win 2K from a CD I bought 3 years ago. I put this fresh
>new naked virgin OS right out on the Internet going
>straight for Microsoft Windows Update. But since I have no
>fixes or patches, is it possible that my computer could be
>hacked/hijacked during this process? In other words how
>safe is my connection to Microsoft.com while I'm trying to
>download and install the Update?



Goto zonealarm.com or sygate.com, etc.

They offer "free for personal" use firewalls that will work nicely.


-
--
cnewton.remove-
Anti-Spam filter in place--
<delete .remove-this to respond to email>
 
Reply With Quote
 
a nonny mouse
Guest
Posts: n/a

 
      08-18-2004
On Wed, 18 Aug 2004 12:14:45 -0700, Jerry wrote:

> How realistic is the following: I do a fresh install of Win 2K from a CD I
> bought 3 years ago. I put this fresh new naked virgin OS right out on the
> Internet going straight for Microsoft Windows Update. But since I have no
> fixes or patches, is it possible that my computer could be hacked/hijacked
> during this process? In other words how safe is my connection to
> Microsoft.com while I'm trying to download and install the Update?


without any protection, you will be infected in about 10 seconds.
That's a serious estimate.

If you turn on your firewall and/or are behind a firewall or
router/switcher with NAT, you might get a break. The general rule
is to turn on your firewall and/or install a software firewall and AV
software before connecting to the net. Update your AV software first, if
possible, then the MS patches.
 
Reply With Quote
 
Jupiter Jones [MVP]
Guest
Posts: n/a

 
      08-18-2004
Jerry;
Without any protection such as a firewall?
Very dangerous.
I recently read the average time for such a computer to stay clean is
10 minutes.
Some will take longer, others may take seconds.
You MUST at least have a firewall before physically connecting to the
network.

--
Jupiter Jones [MVP]
http://www3.telus.net/dandemar/


"Jerry" <> wrote in message
news:163c01c48557$9f59adc0$...
> How realistic is the following: I do a fresh install of
> Win 2K from a CD I bought 3 years ago. I put this fresh
> new naked virgin OS right out on the Internet going
> straight for Microsoft Windows Update. But since I have no
> fixes or patches, is it possible that my computer could be
> hacked/hijacked during this process? In other words how
> safe is my connection to Microsoft.com while I'm trying to
> download and install the Update?



 
Reply With Quote
 
Gary Flynn
Guest
Posts: n/a

 
      08-19-2004
Jerry wrote:

> How realistic is the following: I do a fresh install of
> Win 2K from a CD I bought 3 years ago. I put this fresh
> new naked virgin OS right out on the Internet going
> straight for Microsoft Windows Update. But since I have no
> fixes or patches, is it possible that my computer could be
> hacked/hijacked during this process? In other words how
> safe is my connection to Microsoft.com while I'm trying to
> download and install the Update?


You can get infected very quickly. Windows 2000 doesn't
come with a firewall but it does come with some IPSEC
tools that may help. With them, you can block ports.
Its not stateful so there is still risk with ports like
1025 that you can't block this way but its better than
nothing. Unfortunately, its also fairly complicated.

Here is an excerpt from a script we use that you may
find helpful to learn how to use the ipsecpol command
line tool. The tool is available at:
http://www.microsoft.com/windows2000...ipsecpol-o.asp

Like registry editing, doing it wrong can be hard to
recover from.

This was written a while ago. Today, I'd add a line
for tcp port 5000 too.

No guarantees. No support. Not responsible for
accidents.


function EnableFirewall()
{
var shell = new ActiveXObject("WScript.Shell");
//Block incoming connections to RPC/DCOM
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti135\"
-f *=0:135:TCP -n BLOCK -x",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui135\"
-f *=0:135:UDP -n BLOCK -x ",0,true);

//Block incoming connections to Netbios
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti137\"
-f *=0:137:TCP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui137\"
-f *=0:137:UDP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti138\"
-f *=0:138:TCP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui138\"
-f *=0:138:UDP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti139\"
-f *=0:139:TCP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui139\"
-f *=0:139:UDP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti445\"
-f *=0:445:TCP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui445\"
-f *=0:445:UDP -n BLOCK -x ",0,true);

//Block incoming connections to SNMP
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti161\"
-f *=0:161:TCP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui161\"
-f *=0:161:UDP -n BLOCK -x ",0,true);

//Block incoming connections to IIS Web Server
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti80\"
-f *=0:80:TCP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti443\"
-f *=0:443:TCP -n BLOCK -x ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti563\"
-f *=0:563:TCP -n BLOCK -x",0,true);

targetTable = document.getElementById("tabMainChoices");
targetTable.rows[2].cells[1].innerHTML="<font color=\"blue\">Your
computer is now protected from the network. It is safe to connect your
network cable. <b>After doing so, please visit the Microsoft Windows
Update Site and install all critical updates ASAP.</b>.</font>";
}


function DisableFirewall()
{
var shell = new ActiveXObject("WScript.Shell");
//Block incoming connections to RPC/DCOM
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti135\"
-f *=0:135:TCP -n BLOCK -o",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui135\"
-f *=0:135:UDP -n BLOCK -o ",0,true);

//Block incoming connections to Netbios
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti137\"
-f *=0:137:TCP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui137\"
-f *=0:137:UDP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti138\"
-f *=0:138:TCP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui138\"
-f *=0:138:UDP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti139\"
-f *=0:139:TCP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui139\"
-f *=0:139:UDP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti445\"
-f *=0:445:TCP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui445\"
-f *=0:445:UDP -n BLOCK -o ",0,true);

//Block incoming connections to SNMP
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti161\"
-f *=0:161:TCP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bui161\"
-f *=0:161:UDP -n BLOCK -o ",0,true);

//Block incoming connections to IIS Web Server
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti80\"
-f *=0:80:TCP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti443\"
-f *=0:443:TCP -n BLOCK -o ",0,true);
shell.Run(".\\ipsecpol -w REG -p \"StartSafeFirewall\" -r \"bti563\"
-f *=0:563:TCP -n BLOCK -o",0,true);

targetTable = document.getElementById("tabMainChoices");
targetTable.rows[2].cells[1].innerHTML="<font color=\"red\"><b>After
restarting your computer, it will be exposed to the network. If you have
not installed ALL critical updates, your computer will be vulnerable to
infection and compromise.</b></font>";
}

--
Gary Flynn
Security Engineer
James Madison University
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Vista Virgin Ralph Windows Vista Hardware 1 12-17-2007 11:49 AM
Virgin Broadband Says She Has No Ethernet Card!! Help Please! mariaw04 Windows Vista Networking 2 11-20-2007 01:47 PM
Virgin Broadband wcook79 Windows Vista General Discussion 21 11-15-2007 08:20 PM
Setup can cause a paranoid attack Xibit Windows Vista Installation 2 09-30-2006 04:11 PM
Virgin Beta Tester Confused... Darrin Windows Vista General Discussion 2 07-26-2006 03:58 AM



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 47 48 49 50 51 52 53 54 55 56 57 58 59