zap-cdk
    Preparing search index...

    Interface IPassiveScanConfig

    IPassiveScanConfig Represents the configuration for a passive scan.

    interface IPassiveScanConfig {
        alwaysRun?: boolean;
        enabled?: boolean;
        parameters: IPassiveScanParameters;
        rules?: IPassiveScanRule[];
        type: "passiveScan-config";
    }
    Index

    Properties

    alwaysRun?: boolean

    If set and the job is enabled, then it will run even if the plan exits early, default: false.

    enabled?: boolean

    If set to false, the job will not be run, default: true.

    The parameters for the passive scan configuration.

    A list of one or more passive scan rules.

    type: "passiveScan-config"

    Passive scan configuration.