Read asp form values with ISAPI filter?

Read asp form values with ISAPI filter?

am 16.04.2008 09:17:54 von Walter Sobchak

Is it possible to get the values of an asp form within the isapi filter?
I tried to catch it with SF_NOTIFY_READ_RAW_DATA event but it doesn't work?

Re: Read asp form values with ISAPI filter?

am 16.04.2008 11:11:39 von David Wang

On Apr 16, 12:17=A0am, Walter Sobchak wrote:
> Is it possible to get the values of an asp form within the isapi filter?
> I tried to catch it with SF_NOTIFY_READ_RAW_DATA event but it doesn't work=
?


IIS version?

It is possible but not supported. Depending on implementation, you may
open other security vulnerabilities and/or disable SSL on your server.


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//

Re: Read asp form values with ISAPI filter?

am 16.04.2008 12:38:48 von Walter Sobchak

IIS is v6.0.
I think I read that this notification cannot be done in 6.0.
I also tried with 5.1 but it isn't working.

SSL should be enabled for my server. I heard ISAPI extensions can do
this kid of thing and I would like to know if I could combine that isapi
extension feature in my isapi filter ?

David Wang wrote:
> On Apr 16, 12:17 am, Walter Sobchak wrote:
>> Is it possible to get the values of an asp form within the isapi filter?
>> I tried to catch it with SF_NOTIFY_READ_RAW_DATA event but it doesn't work?
>
>
> IIS version?
>
> It is possible but not supported. Depending on implementation, you may
> open other security vulnerabilities and/or disable SSL on your server.
>
>
> //David
> http://w3-4u.blogspot.com
> http://blogs.msdn.com/David.Wang
> //

Re: Read asp form values with ISAPI filter?

am 17.04.2008 03:31:50 von David Wang

On Apr 16, 3:38=A0am, Walter Sobchak wrote:
> IIS is v6.0.
> I think I read that this notification cannot be done in 6.0.
> I also tried with 5.1 but it isn't working.
>
> SSL should be enabled for my server. I heard ISAPI extensions can do
> this kid of thing and I would like to know if I could combine that isapi
> extension feature in my isapi filter ?
>
>
>
> David Wang wrote:
> > On Apr 16, 12:17 am, Walter Sobchak wrote:
> >> Is it possible to get the values of an asp form within the isapi filter=
?
> >> I tried to catch it with SF_NOTIFY_READ_RAW_DATA event but it doesn't w=
ork?
>
> > IIS version?
>
> > It is possible but not supported. Depending on implementation, you may
> > open other security vulnerabilities and/or disable SSL on your server.
>
> > //David
> >http://w3-4u.blogspot.com
> >http://blogs.msdn.com/David.Wang
> > //- Hide quoted text -
>
> - Show quoted text -


http://blogs.msdn.com/david.wang/archive/2006/05/10/HOWTO-Ac cess-POST-form-d=
ata-with-ISAPI.aspx


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//