ltm rule command ANTIFRAUD alert minΒΆ

iRule(1)		      BIG-IP TMSH Manual		      iRule(1)



ANTIFRAUD::alert_min
       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.

SYNOPSIS
       ANTIFRAUD::alert_min

DESCRIPTION
       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.

RETURN VALUE
       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.

VALID DURING
       ANTIFRAUD_ALERT

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]"
		}
	    }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-13.0.0
		   --First introduced the command.



BIG-IP				  2017-01-31			      iRule(1)