The Active Network
ActiveMac Anonymous | Create a User | Reviews | News | Forums | Advertise  
 

  *  

  Security Tools and Checklists for Managing Microsoft Security
Time: 17:41 EST/22:41 GMT | News Source: ActiveWin.com | Posted By: Robert Stein

Thanks Chad. "Computer security over the Internet is a worldwide concern fundamental to the way we live and do business. To help ensure this security, Microsoft is mobilizing its people and resources in the Microsoft Strategic Technology Protection Program, which integrates products, services, and support. "

Write Comment
Return to News

  Displaying 1 through 25 of 161
Last | Next
  The time now is 9:33:11 AM ET.
Any comment problems? E-mail us
#1 By 20 (24.243.41.64) at 1/25/2003 5:44:13 PM
You should download the Microsoft Baseline Security Adviser and/or the HFNetChk utility and schedule it to run once a day.

I've written a VBScript which you can schedule which will take the output of the utility and email it to you so you can see if any new patches have been posted.

I'll be posting the script here soon once I get it tweaked and the glitches removed.

If anyone else has a similar script or utility, please post it ASAP.

Thanks,
daz (Chad)

#2 By 7390 (63.211.44.114) at 1/25/2003 5:47:27 PM
Inept IT dept doesn't routinely check for fixes apply them = blame MS for everything

#3 By 20 (24.243.41.64) at 1/25/2003 5:49:42 PM
The patch for Code Red was out 3 MONTHS (!!) before Code Red first appeared.

What is MS supposed to do if people don't apply patches?

Not make bugs in the first place? LOL. Perhaps you should work for MS if you're so perfect.

#4 By 12071 (203.217.3.203) at 1/25/2003 8:20:33 PM
#3 Are people/businesses supposed to just blindly 'trust' Microsoft with their patches and apply them directly to their production environments? It is possible that the patch has a problem or indirectly causes a problem in another section of the original code.

On a home system you can apply patches the second they come out without too much worrying.
In a small/medium sized company you'd want to do a minimum bit of testing first.
In a large company you'll find that it actually takes quite a while for the patch to be thoroughly tested before they will be applied in production. This isn't their fault for not applying a patch straight away, they cannot take the risk of blindly applying a patch, these patches need to go through a proper test - the actual length of the test depends on the company obviously.

#5 By 2459 (24.170.151.14) at 1/25/2003 8:48:44 PM
#4 Is 6 months not long enough to test? That's how long the patch for the SQL vulnnerability has been available.

With the integration and regression testing MS does, I'd be more willing to trust them than any other vendor. You either test the patch and take the risks involved in applying it, or you take the greater risk of having an unpatched system. If you don't want the patch, you shouldn't have a system open on the internet.
This is an Admin problem, not an MS problem.

This post was edited by n4cer on Saturday, January 25, 2003 at 21:03.

#6 By 20 (24.243.41.64) at 1/25/2003 9:29:19 PM
I really don't know how much more MS can do. They provide gobs and gobs of tools. They even have a tool that will detect new patches, download them and install them for you automatically (of course you can configure which patches, and approved lists and things like that).

They have detection tools, analysis tools, prevention tools, easy-to-follow checklists. I mean, short of having an MS employee standing next to every Windows 2000 install, I really don't know how much more they can do for security.

Writing fewer bugs and testing more doesn't seem to be possible. They test a ton and developers will never be perfect.

#7 By 20 (24.243.41.64) at 1/25/2003 9:33:34 PM
BTW, as promised. Here's the VBScript I wrote to automate the mailing.
[EDIT: Damn, all my tabification is lost. If anyone wants the actual file as an email attachment, let me know and I'll email it to you.]

This assumes:

- You have a batch file that runs that calls the HFNetChk or MS Baseline Security Analyzer and creates a file called c:\hfc\lastrun.txt (use the /f switch to output to a file)

- You have IIS installed with the SMTP services loaded (required for CDONTS) and you have it configured properly.

- You have the Windows Scripting Host 5.5 or later installed (comes with IE 5.x and later)

- You have the Scripting.FileSystemObject object available (scrrun.dll has not been disabled)

Please note that I haven't written VBScript in a year or so, so forgive me if my VBScript syntax sucks :)

----------START HERE--------------

Option Explicit

Const ForReading = 1
Const HighImportance = 2
Const FILE_PATH = "c:\hfc"
Const FROM_ADDRESS = "Your Server<Your@Email.com>"
Const TO_ADDRESS = "Email1@your.com; Email2@your.com"


Dim FSO
Dim cdoMail

Set FSO = WScript.CreateObject("Scripting.FileSystemObject")

' First, ensure that the HFNetChk file exists before we waste any more time
If FSO.FileExists(FILE_PATH & "\lastrun.txt") Then

Dim file
Dim fileContents

Set file = FSO.OpenTextFile(FILE_PATH & "\lastrun.txt", ForReading)

fileContents = file.ReadAll()

file.Close

Set file = Nothing

Set cdoMail = WScript.CreateObject("CDONTS.NewMail")

cdoMail.From = FROM_ADDRESS

cdoMail.To = TO_ADDRESS

cdoMail.Subject = "Last HFNetChk Security Scan Results"

cdoMail.Importance = HighImportance

cdoMail.Body = fileContents

cdoMail.Send

Set cdoMail = Nothing

End If

Set FSO = Nothing

This post was edited by daz on Saturday, January 25, 2003 at 21:34.

#8 By 135 (208.50.206.187) at 1/25/2003 11:38:03 PM
"I really don't know how much more MS can do."

Well in the case of SQL Server and MSDE they could do two things:

#1. Make these patches easier to install... rather than telling us to do everything manually.

#2. Start supplying MSDE with a GUI administrative interface. Ought to at least be able to change the password without going out to DOS, sheesh.

#9 By 20 (24.243.41.64) at 1/25/2003 11:57:44 PM
Yeah. They could do that. There is a tiny bit room for improvement.

Step back and look at all the other patching mechanisms for a second.

MS could show up at your door walk in, install the patch, configure and tweak your server to get 100% better performance, all for free. At the end, you guys would begin to complain about the cost of MS software.

This post was edited by daz on Saturday, January 25, 2003 at 23:58.

#10 By 135 (208.50.206.187) at 1/26/2003 2:07:13 AM
"MS could show up at your door walk in, install the patch, configure and tweak your server to get 100% better performance, all for free. At the end, you guys would begin to complain about the cost of MS software."

Or we could not use hyperbole in discussions. At the end, people might actually consider this an intelligent conversation.

Think about it.

#11 By 12071 (203.217.0.139) at 1/26/2003 7:24:34 AM
#6 Completely depends on the organisation at hand. However I would say that just about all of them should have been able to test the patch within the 6 months. So in this case, there isn't a lot to be said for those organisations that did not apply the patch.

But what about the next time something like this happens and let's say the patch has only been out a couple of weeks? That is definetely not enough time to test out the patch!

The amount of integration and regression testing is nice to know but it in no way removes any potential risks from the patches they provide. i.e. It's great that they go to all the effort of testing that they do but no responsible company will simply apply a patch without testing it out properly on their own systems first. After all, if Microsoft thoroughly tested in the first place there may not have been a need for this patch!

But yes you're right, you shouldn't have your SQL server open to the internet, at the absolute minimum you should have it behind a firewall so that only trusted servers can access it, so this is very much an admin issue.

#12 By 2459 (24.170.151.14) at 1/26/2003 5:57:41 PM
After all, if Microsoft thoroughly tested in the first place there may not have been a need for this patch!

I have to disagree with this statement. MS isn't the only company to ship code with buffer overruns and other bugs. No amount of testing is going to find every bug in a large project such as SQL or Windows. Apple, and the OSS groups can't even claim to ship completely bug-free products. And, in the case of OSS, you don't even get integration/regression testing for patches. But, had this been a *n*x issue, the admin would have been blamed, end of story.

But what about the next time something like this happens and let's say the patch has only been out a couple of weeks? That is definetely not enough time to test out the patch!

True, but this is no different for any other piece of software. Plus, again, you have to weigh the risks based on the severity of the exploit the patch fixes. Most people can stay safe while taking the time needed to test the patch simply by using the most basic security measures of having a firewall with a minimal amount of open ports, and a virus scanner that is kept up to date. Most mission-critical systems really shouldn't be open to the internet in the first place. If there is a credible need for this, then there should be backup systems in place. Your data is only as secure as the box it's running on. Given the choice, I'd much rather risk a patch, than risk having my data/systems open to crackers or kiddies. What's worse, downtime from a patch, or downtime, bandwidth costs, possible data loss/theft, denial of service, and a larger number of affected systems due to an exploit? In this case, other actions besides patching could have helped, like closing the affected port.

#13 By 4240821 (45.149.82.86) at 10/26/2023 4:35:09 AM
https://sexonly.top/get/b525/b525biwroqilwvlznhf.php
https://sexonly.top/get/b522/b522hvsofachplgrjro.php
https://sexonly.top/get/b176/b176qwcmmxhwzuvcaej.php
https://sexonly.top/get/b102/b102njxhpuhpgzorepu.php
https://sexonly.top/get/b815/b815giyvrzplhcfdmgb.php
https://sexonly.top/get/b716/b716gvsdoavzmexzwso.php
https://sexonly.top/get/b304/b304behhpnecwaztzbn.php
https://sexonly.top/get/b773/b773unxfjfhrblaxfzo.php
https://sexonly.top/get/b804/b804mfmaqigfgvrixmf.php
https://sexonly.top/get/b195/b195hkvxsnexyavkcoa.php
https://sexonly.top/get/b516/b516ujhivetsqgnpbmc.php
https://sexonly.top/get/b89/b89riakcmlmunrxait.php
https://sexonly.top/get/b18/b18uqzihuamqpgolqr.php
https://sexonly.top/get/b385/b385viumuqjzokhtdih.php
https://sexonly.top/get/b848/b848ulkttwlheomtrqb.php
https://sexonly.top/get/b892/b892dmbhlgxfpwjhlwn.php
https://sexonly.top/get/b612/b612rjuuoqkofzdtrqg.php
https://sexonly.top/get/b669/b669tewbmkpcgkrhhlp.php
https://sexonly.top/get/b231/b231bpsdkcfvhvjhqiy.php
https://sexonly.top/get/b614/b614elositmneqgoesi.php
https://sexonly.top/get/b42/b42rujqfkfprfmxyhu.php
https://sexonly.top/get/b289/b289pkjfhhgonccnjrn.php
https://sexonly.top/get/b768/b768taochoaffmypigk.php
https://sexonly.top/get/b809/b809syilsobniqxjict.php
https://sexonly.top/get/b833/b833hndqfjmhhmsgdep.php
https://sexonly.top/get/b935/b935gwtqqgqfhubmsmq.php
https://sexonly.top/get/b369/b369cgqoqrjxywuuaby.php
https://sexonly.top/get/b610/b610szkamauicfdmsee.php
https://sexonly.top/get/b213/b213urxrhixirpdqpey.php
https://sexonly.top/get/b590/b590ywtgwqgwupblwta.php
https://sexonly.top/get/b474/b474rvnwluionpblexd.php
https://sexonly.top/get/b341/b341ujzwlncljrkancm.php
https://sexonly.top/get/b445/b445yaljiwctnvwmkyq.php
https://sexonly.top/get/b591/b591lzsnwiveqvpbqji.php
https://sexonly.top/get/b506/b506fkdtxacadudialr.php
https://sexonly.top/get/b967/b967loijeizrqlpxapr.php
https://sexonly.top/get/b741/b741peeqzftrokwhibw.php
https://sexonly.top/get/b327/b327nmhjxwdenwdwzeo.php
https://sexonly.top/get/b708/b708pkpiggehfwsmokq.php
https://sexonly.top/get/b376/b376lvjdylzaeuxfmyt.php
https://sexonly.top/get/b729/b729wbiupbyggzybvfo.php
https://sexonly.top/get/b377/b377hzimggznanrjpyr.php
https://sexonly.top/get/b942/b942vtyjcehfqnsdxsg.php
https://sexonly.top/get/b150/b150zadiblocmknqxqw.php
https://sexonly.top/get/b564/b564ifvcfimjijbgwql.php
https://sexonly.top/get/b481/b481uzcjzkklpzdfzxf.php
https://sexonly.top/get/b3/b3fzthhoyfthkcrwj.php
https://sexonly.top/get/b144/b144ctksmljjygkdnxe.php
https://sexonly.top/get/b875/b875niuadolpkscanpy.php
https://sexonly.top/get/b427/b427qwcmswziqyngumy.php

#14 By 4240821 (103.151.103.150) at 10/30/2023 8:56:23 AM
https://www.quora.com/profile/JohnGibson605/Brownskinn_BBW-Skylar-Waters-JordynnJets-LaylaEve-C4OTICDUWM13-wetprincess5150-spookybetty-Arya_Storm-bo
https://www.quora.com/profile/JulieJacobson906/Injured-Arm-Studios-Lia-One-NatashaMonee-SognoDPassaggio-BeatrixValentine-Luscious-Chantel-Twyla-doll-nand
https://www.quora.com/profile/MikeMaruffo224/LilBabyNiy-tolana-1-Delilah_love69-MelaLudo-AuroraJai-JessieAndJackson-supersquirter2000-nuptia-Ericasun
https://www.quora.com/profile/MikeStout259/princessjaz010-Fryiaa-Violet-Mortem-Mary-Alice-Pokahotass210-KatyDaytona-Melody-Marks-theebabibam-Lana-S
https://www.quora.com/profile/JakeStellingwerf224/ivanna-james-babyboyndgirl-Pamela-Rose-NeoEmma-Summer-rose-Mistress-Misty-kitty-nation-FRANKOSEXUAL-Vita
https://www.quora.com/profile/TaraEvans632/Denise-K-sofia-sandobar-Ohheyadriana-MiaRae-lilyski-Bianca-Benett-christine-diamond-contact_fionna-alice
https://www.quora.com/profile/JulieEvans447/Yogigoddess-reaven__18-Anyemj-Inari-Vachs-LAV1SH-bestoflust-AutumnEquinox-justicejaiii-shoko-takasaki
https://www.quora.com/profile/ScottDimatulac721/Bxddie-Bangs-aya-nanjo-Curvyelvishgirl-Laylah-Diamond-Nora-Sparkle-yoursnowbunny-Kara-Kane-silvia-grisso
https://www.quora.com/profile/MarvinMan51/Datkiff-EllieOpal-Brynlee-Paige-Luna-Y-Guango-HumbleMiss2319-Kentucky-Trex-Carolyn-Ochoa-Miss-Honeyy-Pot
https://www.quora.com/profile/DeniseCastillo234/savannah-savage-KimmyKalani-Cassixxx-Kitty-Kurt-Cynthiaprem01-Carly-james-Special-K-n-Roxy-carolinahoney69

#15 By 4240821 (103.152.17.80) at 10/31/2023 8:57:32 AM
https://app.socie.com.br/read-blog/97420
https://app.socie.com.br/read-blog/97681
https://app.socie.com.br/read-blog/97431
https://app.socie.com.br/read-blog/97532
https://app.socie.com.br/read-blog/98295
https://app.socie.com.br/read-blog/97300
https://app.socie.com.br/read-blog/98273
https://app.socie.com.br/townslutNyxieNova
https://app.socie.com.br/Violethollywoodmiabangg
https://app.socie.com.br/Lovelyyybeautyytaissa_winkler

#16 By 4240821 (103.151.103.150) at 10/31/2023 6:47:30 PM
https://app.socie.com.br/read-blog/98192
https://app.socie.com.br/LightowlerLaylaCambria
https://app.socie.com.br/read-blog/97621
https://app.socie.com.br/blisslusttExotickiiyaa
https://app.socie.com.br/read-blog/98675
https://app.socie.com.br/knottygirlThiccbaby244
https://app.socie.com.br/read-blog/97318
https://app.socie.com.br/TauryelHerekitty
https://app.socie.com.br/read-blog/97425
https://app.socie.com.br/read-blog/97209

#17 By 4240821 (62.76.146.75) at 11/1/2023 5:22:52 AM
http://activewin.com/mac/comments.asp?ThreadIndex=22287&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=54396&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=16483&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=9736&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=59615&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=66327&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=44407&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=63074&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=14639&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=25325&Group=Last

#18 By 4240821 (109.94.218.82) at 11/2/2023 2:39:13 PM
http://activewin.com/mac/comments.asp?ThreadIndex=28201&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=16228&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=24504&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=760&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=78627&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=3420&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=84056&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=69498&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=18368&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=53797&Group=Last

#19 By 4240821 (212.193.138.10) at 11/3/2023 8:06:22 AM
http://activewin.com/mac/comments.asp?ThreadIndex=69355&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=42115&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=54435&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=21212&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=75313&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=32548&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=866&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=72965&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=10273&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=13204&Group=Last

#20 By 4240821 (109.94.216.41) at 11/4/2023 3:21:26 PM
https://hotslutss.bdsmlr.com/post/651140238
https://hotslutss.bdsmlr.com/post/660837536
https://hotslutss.bdsmlr.com/post/654160701
https://hotslutss.bdsmlr.com/post/654710785
https://hotslutss.bdsmlr.com/post/652487469
https://hotslutss.bdsmlr.com/post/650121463
https://hotslutss.bdsmlr.com/post/662772264
https://hotslutss.bdsmlr.com/post/656911380
https://hotslutss.bdsmlr.com/post/656067587
https://hotslutss.bdsmlr.com/post/659264771

#21 By 4240821 (92.119.163.194) at 11/6/2023 10:42:26 AM
https://printable-calendar.mn.co/members/19909903
https://printable-calendar.mn.co/members/19900405
https://printable-calendar.mn.co/members/19900526
https://printable-calendar.mn.co/members/19920681
https://printable-calendar.mn.co/members/19913601
https://printable-calendar.mn.co/members/19893809
https://printable-calendar.mn.co/members/19919665
https://printable-calendar.mn.co/members/19894668
https://printable-calendar.mn.co/members/19900657
https://printable-calendar.mn.co/members/19908344

#22 By 4240821 (62.76.146.75) at 11/8/2023 12:56:10 PM
https://www.hackerearth.com/@naistanorna1978
https://www.hackerearth.com/@telmanisa1983
https://www.hackerearth.com/@elerheadligh1980
https://www.hackerearth.com/@liaderewan1974
https://www.hackerearth.com/@yrpitcofi1977
https://www.hackerearth.com/@troperagiv1986
https://www.hackerearth.com/@miltakema1970
https://www.hackerearth.com/@gaufrumabmor1972
https://www.hackerearth.com/@ernigafimb1975
https://www.hackerearth.com/@efovuder1988

#23 By 4240821 (45.146.26.215) at 11/10/2023 2:47:10 PM
http://www.ttbizonline.com/pro/20231109205719
http://www.ttbizonline.com/pro/20231109064037
http://www.ttbizonline.com/pro/20231109105248
http://www.ttbizonline.com/pro/20231109074029
http://www.ttbizonline.com/pro/20231109221028
http://www.ttbizonline.com/pro/20231109133146
http://www.ttbizonline.com/pro/20231109183524
http://www.ttbizonline.com/pro/20231109074029
http://www.ttbizonline.com/pro/20231109122441
http://www.ttbizonline.com/pro/20231109130050

#24 By 4240821 (109.94.216.41) at 11/11/2023 11:47:01 PM
https://www.mddir.com/company/pinkssecrets-clips4sale-leak/
https://www.mddir.com/company/merry-sparkletits-fansly-leaked/
https://www.mddir.com/company/lexi-stone-onlyfans-leaked/
https://www.mddir.com/company/allanmarie1030-fansly-leak/
https://www.mddir.com/company/shapegirl-fansly-leaked/
https://www.mddir.com/company/juicy420inn-patreon-leaked/
https://www.mddir.com/company/stoneyknight-onlyfans-leak/
https://www.mddir.com/company/domme_ericka-fansly-leak/
https://www.mddir.com/company/janeprist-manyvids-leaked/
https://www.mddir.com/company/natasha_bang-manyvids-leaked/

#25 By 4240821 (194.190.178.141) at 11/12/2023 11:49:00 AM
https://instem.res.in/comment/reply/3774/720505
https://instem.res.in/comment/reply/3628/720411
https://instem.res.in/comment/reply/2452/720462
https://instem.res.in/comment/reply/3667/720464
https://instem.res.in/comment/reply/2557/720207
https://instem.res.in/comment/reply/2752/720440
https://instem.res.in/comment/reply/3742/720443
https://instem.res.in/comment/reply/2472/720511
https://instem.res.in/comment/reply/3755/720470
https://instem.res.in/comment/reply/2557/720251

Write Comment
Return to News
  Displaying 1 through 25 of 161
Last | Next
  The time now is 9:33:11 AM ET.
Any comment problems? E-mail us
User name and password:

 

  *  
  *   *