Re: New mod_perl hacker wannabe . . .

2001-10-29 Thread Louis LeBlanc
On 10/28/01 08:29 PM, Jeremy Rusnak sat at the `puter and typed: Just today, I finished a new module - my first from scratch - for handling 404 errors. I know Apache::404 isn't a real imaginative name, but it works. I took a look at this, it's a good idea for smaller sites. I would

[OT] Nimda etc (was Re: New mod_perl hacker wannabe . . .)

2001-10-29 Thread Nick Tonkin
Er, you might look at http://www.tonkinresolutions.com/MSIISProbes.pm.html ... Always a good idea to search the mod_perl list archives, as well as put out ideas in the present tense :) Nick ~~~ Nick Tonkin On Mon, 29 Oct 2001, Louis LeBlanc wrote: On 10/28/01 08:29 PM, Jeremy

New mod_perl hacker wannabe . . .

2001-10-28 Thread Louis LeBlanc
Hey all. Just looking for a little direction here. I'm just getting started learning perl and mod_perl (might as well jump in with both feet, right?). I am mostly just doing my own thing and trying to solve interesting little problems as they come up. A while back, I modified the

Re: New mod_perl hacker wannabe . . .

2001-10-28 Thread John Michael
, October 28, 2001 7:51 PM Subject: New mod_perl hacker wannabe . . . Hey all. Just looking for a little direction here. I'm just getting started learning perl and mod_perl (might as well jump in with both feet, right?). I am mostly just doing my own thing and trying to solve interesting little

Re: New mod_perl hacker wannabe . . .

2001-10-28 Thread Stas Bekman
Louis LeBlanc wrote: I'm just getting started learning perl and mod_perl (might as well jump in with both feet, right?). I am mostly just doing my own thing and trying to solve interesting little problems as they come up. [snip] Anyway, I'd like to know if it is customary for any

Re: New mod_perl hacker wannabe . . .

2001-10-28 Thread Louis LeBlanc
On 10/28/01 08:27 PM, John Michael sat at the `puter and typed: I'm new to the list and have very little experience writing modules but have one concern because I have written quite a few perl scripts that send email alerts and I also ran a perl script that picked up 404 error through the doc

Re: New mod_perl hacker wannabe . . .

2001-10-28 Thread Louis LeBlanc
On 10/29/01 10:39 AM, Stas Bekman sat at the `puter and typed: [snip] The truth is that it doesn't matter how many modules you have submitted to CPAN. You become a mod_perl hacker by being an *active* contributor. And you can contribute in many direct and subtle ways. Some of the

RE: New mod_perl hacker wannabe . . .

2001-10-28 Thread Jeremy Rusnak
Just today, I finished a new module - my first from scratch - for handling 404 errors. I know Apache::404 isn't a real imaginative name, but it works. I took a look at this, it's a good idea for smaller sites. I would suggest that you figure out a way to put a rate limit on the number of

[OT] Nimda, etc (was: New mod_perl hacker wannabe . . .)

2001-10-28 Thread David Young
)$ SetHandler perl-script PerlHandler sub { return OK; } /LocationMatch From: John Michael [EMAIL PROTECTED] Date: Sun, 28 Oct 2001 20:27:03 -0600 To: [EMAIL PROTECTED] Subject: Re: New mod_perl hacker wannabe . . . My server is constantly getting scanned by various hacking robots. I

Re: [OT] Nimda, etc (was: New mod_perl hacker wannabe . . .)

2001-10-28 Thread Stas Bekman
David Young wrote: FWIW, Apache::CodeRed seemed like a good idea for a while, and then Nimbda showed up, and it was apparent no one was actually doing anything about the infected machines. I got sick of the notifications and the junk in my error log, so I resorted to this handler:

Re: [OT] Nimda, etc (was: New mod_perl hacker wannabe . . .)

2001-10-28 Thread John Michael
- Original Message - From: Stas Bekman [EMAIL PROTECTED] To: David Young [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, October 28, 2001 11:45 PM Subject: Re: [OT] Nimda, etc (was: New mod_perl hacker wannabe . . .) David Young wrote: FWIW, Apache::CodeRed seemed like

Re: [OT] Nimda, etc (was: New mod_perl hacker wannabe . . .)

2001-10-28 Thread John Michael
I tried PerlPostReadRequestHandler Apache::DONE and apache would not start I changed it to: LocationMatch \.(ida|exe)$ SetHandler perl-script PerlInitHandler Apache::DONE /LocationMatch Apache then started And it looks for the module DONE.pm So I guess you have to write the module for it to

Re: [OT] Nimda, etc (was: New mod_perl hacker wannabe . . .)

2001-10-28 Thread Stas Bekman
John Michael wrote: I tried PerlPostReadRequestHandler Apache::DONE and apache would not start I changed it to: LocationMatch \.(ida|exe)$ SetHandler perl-script PerlInitHandler Apache::DONE /LocationMatch Apache then started And it looks for the module DONE.pm My bad, should