savant-discuss Mailing List for Savant Web Server (Page 4)
Brought to you by:
lamonml
You can subscribe to this list here.
2001 |
Jan
|
Feb
(5) |
Mar
(45) |
Apr
(38) |
May
(55) |
Jun
(46) |
Jul
(9) |
Aug
(32) |
Sep
(47) |
Oct
(30) |
Nov
(20) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(3) |
Feb
(11) |
Mar
(3) |
Apr
(1) |
May
|
Jun
(4) |
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Don M. <fe...@me...> - 2001-10-02 20:34:57
|
I have run Savant on 2 PCs one with the normal port # another with a different. It works. Thing is if you plan on using for the public keep in mind firewalls used by the public (corporate especially) may not be able to use your second server/on an odd port number. I use the second server for setting up pages/developing/testing. -- Later! Don, Marge, Presley, Ellie, King, Emily Sue, Beau, Joe & Doc See our Web Sites at http://www.bcpl.net/~dmorgan/ and http://cc18100-b.mtcm1.md.home.com/index.htm First Web Page New 5/20/2001 Searching for the best free email? Try MetaCrawler Mail, from the #1 metasearch service on the Web, http://www.metacrawler.com |
From: Mats N. <mat...@hp...> - 2001-10-02 06:16:28
|
>>>I have a need to run multiple web sites on one >>> >>server. I would like to be able to determine the DNS >>of the incoming request and serve up the appropriate >>page (or site) any suggestions would be appreciated. >>< >> What about running multiple sessions of Savant on different port numbers. I would like to do it myself. Is It possible? -- Best Regards/M.V.H. Mats Nyberg Para Tech Coating Scandinavia AB mailto:mat...@hp... http://www.paratech.nu tel:08-580 825 72 tel int:+46 8 580 825 72 |
From: <gor...@ya...> - 2001-10-01 07:03:45
|
--- David <arr...@ho...> wrote: > > Damn, that script would have really come in handy to > me a while back. > Anyway, I could be wrong, but I don't think that's > exactly what he had in > mind. I think he means he wants to have multiple > domains hosted on the same > server. If so, I'm not sure Savant can do that. > Of course, you could have multiple computers in your > home, each running > Savant and each with it's own IP address. > Anyway, just a shot in the dark. > David C. Can Savant handle the /~(directory) system ? eg my.host.com/~user1/index.htm my.host.com/~user2/index.htm my.host.com/~user3/index.htm ??? G. ===== G. Stewart New Zealand chat & Discussion group email new...@ya... for details. |
From: CLAYTON A. C. B. <ca...@el...> - 2001-10-01 00:41:11
|
Heres a dumb question-how do I assign a URL to my site?I.E.www.blah-blah.net or .com etc?Did I miss something in the manual??? |
From: Gordon S. <Gor...@ir...> - 2001-10-01 00:16:36
|
Gordon Stewart All views expressed are my own=20 - unless otherwise advised. >>> "David" <arr...@ho...> 10/01/01 01:00 >>> > Of course, you could have multiple computers in your home, each running Savant and each with it's own IP address. Anyway, just a shot in the dark. David C. < I dont 'need' it... now.. But, if we had 2-3 or more Pc's running savant - all with different ip's. is there a way, to say ... All traffic will go through 1 IP address - But if 'traffic' gets too much = - to automatically transfer the person to another IP - the other PC.=20 The other Pc's will have an exact copy of the original site... thus - spreading the work load. is this poss? (I dont need it - but could come in handy later) G. |
From: Quince al'P. <qui...@ho...> - 2001-09-30 19:19:05
|
Sorry for the late reply, but there was a bug in the system and my old msg got trashed. To the person who was having trouble with the dns/server when it wouldn't even let him go to localhost:80 to get to his website, try changing the server/dns box in the config to nothing or the actual dns that you're trying to go to. Savant automatically redirects people to the index.html page and if that box is wrong then it sends them to the wrong address/index.html Quince _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp |
From: Boris L. <bo...@ac...> - 2001-09-30 14:19:27
|
Why not setup different directories, each with their own 'index.html'. The Path Property Sheet would identify each directory as a unique website. Seems much easier. My Savant server has 5 unique websites. Curious ----- Original Message ----- From: "Robert Tidwell" <rti...@fi...> To: <sav...@li...> Sent: Thursday, September 27, 2001 10:04 PM Subject: [Savant-discuss] Multiple Web Sites > I have a need to run multiple web sites on one server. I would like to be > able to determine the DNS of the incoming request and serve up the > appropriate page (or site) any suggestions would be appreciated. > > Robert Tidwell > > |
From: David <arr...@ho...> - 2001-09-30 13:01:04
|
----- Original Message ----- From: "gordon stewart" <gor...@ya...> To: "Robert Tidwell" <rti...@fi...> Cc: <sav...@li...> Sent: Saturday, September 29, 2001 8:46 PM Subject: Re: [Savant-discuss] Multiple Web Sites > --- Robert Tidwell <rti...@fi...> wrote: > > > > I have a need to run multiple web sites on one > server. I would like to be able to determine the DNS > of the incoming request and serve up the appropriate > page (or site) any suggestions would be appreciated. > < > > Yep - just create a small index.htm file (or html) > > and put > > <META HTTP-EQUIV="Refresh" CONTENT="0; > URL=/cgi-bin/goto.cgi"> > > Thats in-between your <HEAD> & </HEAD> statements. > > Now, in your goto.cgi file, put :- > > --------- (dont put this dotted line) > #!/usr/bin/perl > > use CGI::Carp qw(fatalsToBrowser); > use CGI 'param'; > > If ($ENV{REMOTE_HOST} =~ /attica.net/ig) { > $go = "/url1 of main page"; > } > else { > $go = "/any other url"; > } > > > print "Content-type: text/html\n\n"; > <META HTTP-EQUIV=\"Refresh\" CONTENT=\"0; URL=$go\"> > --------------------------------------------------- > > Just change the $go variables to the URL you want > things to go > > Basically - In this script, if the user is using a Pc > on attica.net (thats me) - They'll go to > "url1 of main page" > > any other Pc - will go to the 2nd URL > > G. > Damn, that script would have really come in handy to me a while back. Anyway, I could be wrong, but I don't think that's exactly what he had in mind. I think he means he wants to have multiple domains hosted on the same server. If so, I'm not sure Savant can do that. Of course, you could have multiple computers in your home, each running Savant and each with it's own IP address. Anyway, just a shot in the dark. David C. |
From: <gor...@ya...> - 2001-09-30 01:46:58
|
--- Robert Tidwell <rti...@fi...> wrote: > I have a need to run multiple web sites on one server. I would like to be able to determine the DNS of the incoming request and serve up the appropriate page (or site) any suggestions would be appreciated. < Yep - just create a small index.htm file (or html) and put <META HTTP-EQUIV="Refresh" CONTENT="0; URL=/cgi-bin/goto.cgi"> Thats in-between your <HEAD> & </HEAD> statements. Now, in your goto.cgi file, put :- --------- (dont put this dotted line) #!/usr/bin/perl use CGI::Carp qw(fatalsToBrowser); use CGI 'param'; If ($ENV{REMOTE_HOST} =~ /attica.net/ig) { $go = "/url1 of main page"; } else { $go = "/any other url"; } print "Content-type: text/html\n\n"; <META HTTP-EQUIV=\"Refresh\" CONTENT=\"0; URL=$go\"> --------------------------------------------------- Just change the $go variables to the URL you want things to go Basically - In this script, if the user is using a Pc on attica.net (thats me) - They'll go to "url1 of main page" any other Pc - will go to the 2nd URL G. ===== G. Stewart New Zealand chat & Discussion group email new...@ya... for details. http://travel.yahoo.com.au - Yahoo! Travel - Got Itchy feet? Get inspired! |
From: Robert T. <rti...@fi...> - 2001-09-28 04:04:30
|
I have a need to run multiple web sites on one server. I would like to be able to determine the DNS of the incoming request and serve up the appropriate page (or site) any suggestions would be appreciated. Robert Tidwell |
From: Gordon S. <Gor...@ir...> - 2001-09-28 02:49:56
|
Hi again.. Ive got savant 3.0 - but in the 'help' button.. It doesnt say "build 1.0.9" etc... - for interim fixes etc.. in-between = official releases.. Is savant being 'released' with bug-fixes 'fixed' / improvements etc.. ? G. |
From: Gordon S. <Gor...@ir...> - 2001-09-27 00:20:31
|
print "<!--#exec cgi=3D\"bannerside.pl\" -->\n"; in my normal SSI server my CFGI script simply prints the above - & it = works fine... How do you do that with no SSI ? Ive tried variants on :- ---------------------------- You could do: print `/my/prog arg1 arg2`; or print qx(/my/prog arg1 arg2); or system "/my/prog", "arg1", "arg2"; However, system() might not display when you THINK it will -- be careful with that one. ---------------------- G |
From: Gordon S. <Gor...@ir...> - 2001-09-26 23:47:55
|
Without using a module/poackage.. is there a way on Savant, to 'call' another CGi file from within a CGI = file ? Basically, Im going from a site that has SSI, to a site with NO SSI... & I know Savant has no SSI, so the procedure would be the same.. Basically, I want to=20 :- do my script.. :- 'call' / 'activate' an 'ad.cgi' / 'ad.pl' script,=20 Then resume my original script (CGi/Perl) from where i left off.. G. |
From: <gor...@ya...> - 2001-09-25 09:35:32
|
Hi gang, - My regulkar ISP has done something, & now when I activate my Savant server - The DNS shows another ISP.. Anyway, since the change to another hosting coy / router, (not sure what its called). I can no longer use my Savant. Ive changed my port number, & even tried http://localhost http://dns.number:port number http://dns.number|port number etc.... but nothing works... Any advise ? I only use it to test things on - not as a full-time server... - Then i upload to my propper site after testing.. G. ===== G. Stewart New Zealand chat & Discussion group email new...@ya... for details. |
From: Gordon S. <Gor...@ir...> - 2001-09-24 04:09:42
|
Hi=20 1) anyone using DBM database files using perl ? 2) Ive got a small 'test' filre at home - going.. But my one here , Doesnt Go. - Is this list active ? (cgi-help one) Ive requested a copy of my options, & I should be receiving email - But = ive not seen any for several weeks / months. G. |
From: Steve <st...@bo...> - 2001-09-24 01:53:12
|
I congratulate the Savant team for building a strong, secure program. Both recent internet worms Code Red and Nimda bounced harmlessly off it. I realize that they were targeted at IIS but still it was a great feeling to watch it happen. The familiar log entry beginning with "208.8.nnn.nnn - - [19/Sep/2001:00:04:45 -0800] "GET /scripts/root.exe?/c+dir" 404 728" left by Nimda contained a great deal of info about what was happening. However, because Savant didn't interpret the Code Red hit as a valid URL, (I guess) "Error: TCP buffer overflow" in the error log was the only sign of that worm's activity. I used "netstat" to inspect IP numbers in that case but I couldn't figure out a workaround to monitor the malformed requests from Code Red although that information was available elsewhere on the web. I would like to see the IP number appended to all error log messages (just nosy I guess) and I could probably modify that part of the source code, but since my skills with 'C' are very poor, I wouldn't dare to fux0r with Savant's buffer overflow routines to add logging of the malformed requests. Especially since those routines work so well. In a probably futile gesture, during the Nimda attacks I edited the "404.html" file to state that the client machine was infected. I wonder if anyone actually saw one. I figure that Savant generates the 403 message but I created one of those with the warning anyway. I thought about renaming a huge file, like an mp3 of a nice 30 minute "Darkstar" to 404.html to tie up the client and slow down the attacks but that would have wasted even more bandwidth. And no doubt my little 350 mHz box would have bogged down before some super server. Steve P.S. Please don't try to teach me anything about buffer overflows. I'm still hoping for that fat programming job in Redmond and I don't want to screw it up. |
From: cfxi <cf...@ho...> - 2001-09-20 12:32:51
|
Yes, I'm still being hammered also. I don't think that this will stop for sometime, as lot of people have this virus, and don't know it yet. in the last 2 days, I have gotten about 10,000 connections more virus than users. Well, Savant is not letting it in, just the 403 and 404 errors. -= Brian =- CFX Communications http://www.cfxi.d2g.com At 07:32 PM 19/09/01 -0400, Robert Tidwell wrote: >I was hammered by the worm yesterday from many different addresses (one of >which was @homes tech support) but Savant blocked them all serving up only >403 and 404 errors. > >Robert B. Tidwell |
From: Robert T. <rti...@fi...> - 2001-09-19 23:32:32
|
I was hammered by the worm yesterday from many different addresses (one of which was @homes tech support) but Savant blocked them all serving up only 403 and 404 errors. Robert B. Tidwell |
From: cfxi <cf...@ho...> - 2001-09-19 02:39:08
|
Yes, I too have been get the same attacks also.....403's and 404's -= Brian =- CFX Communications http://cfxi.d2g.com At 12:39 PM 18/09/01 -0700, bil...@ex... wrote: >I too got hammered this morning by this new worm. I think they are calling >it W32/Minda@MM according to our corporate IS guys who just posted an alert >inside my company. See http://slashdot.org/articles/01/09/18/151203.shtml >posted this morning on Slashdot. Savant served up 403 and 404 errors in >reply to the attack. I immediately blocked the IP (66.12.182.10) of the >incoming attack but I expect more attacks from other machines. > >Does anybody know if Savant is vulnerable to this kind of attack? I asked >this in a previous post on 9-5-01 > > From my log file >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET >/scripts/root.exe?/c+dir" 404 258 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET >/MSADC/root.exe?/c+dir" 404 258 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET >/c/winnt/system32/cmd.exe?/c+dir" 404 258 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET >/d/winnt/system32/cmd.exe?/c+dir" 404 258 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET >/scripts/..%255c../winnt/system32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET >/_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir" 403 >259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET >/_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir" 403 >259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET >/msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/sy >stem32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET >/scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET >/scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET >/scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET >/scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:12 -0800] "GET >/scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:12 -0800] "GET >/scripts/..%%35c../winnt/system32/cmd.exe?/c+dir" 403 259 >bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:12 -0800] "GET >/scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir" 403 259 > >Bill Pooley > > > > -----Original Message----- > > From: BubblyBabs [mailto:eg...@bu...] > > Sent: Tuesday, September 18, 2001 7:46 AM > > To: sav...@li... > > Subject: [Savant-discuss] hack attempts > > > > > > Wow, I've had several people (or one person from several > > IP's) trying to > > hack into my server... They obviously think I have Win NT > > and they also > > think I've got windows in c: drive... > > > > Kind of makes me nervous... They are trying to get to the > > scripts folder > > and all... > > > > Should I shut down my server or not worry about this? > > > > I know that Bullet FTP has the capability to allow the server admin to > > contact users while they are at the site in your computer, is > > it possible to > > have Savant with this capability? You know, so I could > > contact the person > > and say "get out or else?" > > > > Oh, I also get a Code Red scan with a bunch of A's... I > > recall someone > > else on this list had that as well... Am glad they asked > > about it so I knew > > what it was! > > > > Babs > > > > > > > > _______________________________________________ > > Savant-discuss mailing list > > Sav...@li... > > https://lists.sourceforge.net/lists/listinfo/savant-discuss > > > >_______________________________________________ >Savant-discuss mailing list >Sav...@li... >https://lists.sourceforge.net/lists/listinfo/savant-discuss |
From: Steven G. A. <det...@sw...> - 2001-09-19 01:04:40
|
Glad I'm not the only one ! Is this the file they are looking for ? /winnt/system32/cmd.exe ? I came home from work and was showing over 6100 hits to my server. Normal 24 hr traffic is around 200-300 hits. Steven ----- Original Message ----- From: "BubblyBabs" <eg...@bu...> To: <sav...@li...> Sent: Tuesday, September 18, 2001 9:46 AM Subject: [Savant-discuss] hack attempts > Wow, I've had several people (or one person from several IP's) trying to > hack into my server... They obviously think I have Win NT and they also > think I've got windows in c: drive... > > Kind of makes me nervous... They are trying to get to the scripts folder > and all... > > Should I shut down my server or not worry about this? > > I know that Bullet FTP has the capability to allow the server admin to > contact users while they are at the site in your computer, is it possible to > have Savant with this capability? You know, so I could contact the person > and say "get out or else?" > > Oh, I also get a Code Red scan with a bunch of A's... I recall someone > else on this list had that as well... Am glad they asked about it so I knew > what it was! > > Babs > > > > _______________________________________________ > Savant-discuss mailing list > Sav...@li... > https://lists.sourceforge.net/lists/listinfo/savant-discuss |
From: Don M. <fe...@me...> - 2001-09-18 23:59:04
|
I have been having the same situation with a hacker trying to get to the scripts folder. This is who it appears to be! Pinging cc107189-f.hyttsvll1.md.home.com [24.39.138.9] with 32 bytes of Reply from 24.39.138.9: bytes=32 time=262ms TTL=119 Reply from 24.39.138.9: bytes=32 time=514ms TTL=119 Reply from 24.39.138.9: bytes=32 time=365ms TTL=119 -- Later! Don, Marge, Presley, Ellie, King, Emily Sue, Beau, Joe & Doc See our Web Sites at http://www.bcpl.net/~dmorgan/ and http://cc18100-b.mtcm1.md.home.com/index.htm First Web Page New 5/20/2001 Searching for the best free email? Try MetaCrawler Mail, from the #1 metasearch service on the Web, http://www.metacrawler.com |
From: Prince Q. D. <chi...@ho...> - 2001-09-18 20:18:16
|
Can anyone recommend a web site that teaches and or explains how to run and write CGI scripts? Thanks Qel http://www.palecow.com |
From: <bil...@ex...> - 2001-09-18 19:39:58
|
I too got hammered this morning by this new worm. I think they are calling it W32/Minda@MM according to our corporate IS guys who just posted an alert inside my company. See http://slashdot.org/articles/01/09/18/151203.shtml posted this morning on Slashdot. Savant served up 403 and 404 errors in reply to the attack. I immediately blocked the IP (66.12.182.10) of the incoming attack but I expect more attacks from other machines. Does anybody know if Savant is vulnerable to this kind of attack? I asked this in a previous post on 9-5-01 From my log file bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET /scripts/root.exe?/c+dir" 404 258 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET /MSADC/root.exe?/c+dir" 404 258 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET /c/winnt/system32/cmd.exe?/c+dir" 404 258 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:09 -0800] "GET /d/winnt/system32/cmd.exe?/c+dir" 404 258 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:10 -0800] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/sy stem32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:11 -0800] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:12 -0800] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:12 -0800] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir" 403 259 bdsl.66.12.182.10.gte.net - - [18/Sep/2001:07:05:12 -0800] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir" 403 259 Bill Pooley > -----Original Message----- > From: BubblyBabs [mailto:eg...@bu...] > Sent: Tuesday, September 18, 2001 7:46 AM > To: sav...@li... > Subject: [Savant-discuss] hack attempts > > > Wow, I've had several people (or one person from several > IP's) trying to > hack into my server... They obviously think I have Win NT > and they also > think I've got windows in c: drive... > > Kind of makes me nervous... They are trying to get to the > scripts folder > and all... > > Should I shut down my server or not worry about this? > > I know that Bullet FTP has the capability to allow the server admin to > contact users while they are at the site in your computer, is > it possible to > have Savant with this capability? You know, so I could > contact the person > and say "get out or else?" > > Oh, I also get a Code Red scan with a bunch of A's... I > recall someone > else on this list had that as well... Am glad they asked > about it so I knew > what it was! > > Babs > > > > _______________________________________________ > Savant-discuss mailing list > Sav...@li... > https://lists.sourceforge.net/lists/listinfo/savant-discuss > |
From: Michael L. <la...@he...> - 2001-09-18 19:20:46
|
A new email worm has started propagating this morning. This worm is similar to Code Red in that it looks for vulnerable Microsoft IIS servers to infect. Savant *is not* vulnerable to this attack - you will however see an increasing number of probes from infected systems over the next couple days. If you use Microsoft Outlook, it is possible for your system to be compromised if you open an attachment containing the worm. As always, don't open attachments you aren't expecting even from people you know and install an up-to-date anti-virus package. Michael Below is information about the worm from Symantec's anti-virus site: -------------------------------------------------------------- W32.Nimda.A@mm is a new mass-mailing worm that utilizes email to propagate itself. The threat arrives as a file named readme.exe in an email. In addition, the worm sends out probes to Microsoft IIS servers attempting to spread itself by using the Unicode Web Traversal exploit similar to W32.BlueCode.Worm. Compromised servers may display a webpage prompting a visitor to download an Outlook file which contains the worm as an attachment. Also, the worm will create an open network share allowing access to the system. The worm will also attempt to spread via open network shares. -------------------------------------------------------------- |
From: Robert T. <rti...@fi...> - 2001-09-18 19:18:12
|
I Love the Savant Server but I must have ASP capabilities has anyone got a solution ? Robert B. Tidwell |