ANTIFRAUD::alert_min

Description

This command returns variable data from client side, e.g. forbidden added HTML element for the external_sources alert or bait signatures for the trojan_bait alert.

Syntax

ANTIFRAUD::alert_min

Examples

 when ANTIFRAUD_ALERT {
    if {[ANTIFRAUD::alert_type] eq "js_vhtml"} {
        if {[ANTIFRAUD::alert_component] eq "external_sources"} {
            log local0. "Alert forbidden added element: [ANTIFRAUD::alert_min]"
        }
        elseif {[ANTIFRAUD::alert_component] eq "trojan_bait"} {
            log local0. "Alert bait signatures: [ANTIFRAUD::alert_min]"
        }
    }
}