On Monday 01 September 2008 18:37:43 Christian Eric EDJENGUELE wrote:

> so, i made a HTTP GET REQUEST, does openvas has a function to lookup for
> specific string in the header ?
>
> for example if the response look like this:
>
> date: 12/30/2008
> server: apache 2.25 (Win32)
>
> can I get the header 'server' and lookup for the string Win32 ? or they are
> not function that do that, and I've to use alternate method (regular

Yes, there are several ways to do this.  Either the >< operator or stridx can 
be used for this purpose.  For example:

if (response >< Win32)
{
        ...
}

or:

if (stridx(response, "Win32)) >= 0)
{
        ...
}

Cheers,
Tim
-- 
Tim Brown
<mailto:[EMAIL PROTECTED]>
<http://www.nth-dimension.org.uk/>
_______________________________________________
Openvas-devel mailing list
Openvas-devel@wald.intevation.org
http://lists.wald.intevation.org/mailman/listinfo/openvas-devel

Reply via email to