zap-cdk
    Preparing search index...

    IInputVectors Represents the configuration for input vectors used in an active scan.

    interface IInputVectors {
        cookieData: { enabled?: boolean; encodeCookieValues?: boolean };
        httpHeaders: { allRequests?: boolean; enabled?: boolean };
        postData: {
            directWebRemoting?: boolean;
            enabled?: boolean;
            googleWebToolkit?: boolean;
            json: { enabled?: boolean; scanNullValues?: boolean };
            multiPartFormData?: boolean;
            xml?: boolean;
        };
        scripts?: boolean;
        urlPath?: boolean;
        urlQueryStringAndDataDrivenNodes: {
            addParam?: boolean;
            enabled?: boolean;
            odata?: boolean;
        };
    }
    Index

    Properties

    cookieData: { enabled?: boolean; encodeCookieValues?: boolean }

    Configuration for cookie data scanning.

    httpHeaders: { allRequests?: boolean; enabled?: boolean }

    Configuration for HTTP header scanning.

    postData: {
        directWebRemoting?: boolean;
        enabled?: boolean;
        googleWebToolkit?: boolean;
        json: { enabled?: boolean; scanNullValues?: boolean };
        multiPartFormData?: boolean;
        xml?: boolean;
    }

    Configuration for POST data scanning.

    scripts?: boolean

    If Input Vector scripts should be used. Default: true.

    urlPath?: boolean

    If URL path segments should be scanned. Default: false.

    urlQueryStringAndDataDrivenNodes: {
        addParam?: boolean;
        enabled?: boolean;
        odata?: boolean;
    }

    Configuration for query parameters and data-driven nodes.