ACCEPT Action

<< Click to Display Table of Contents >>

Navigation:  Event and Object Analysis > Capture Results Filtering > Prefiltering HTTP Requests > Actions >

ACCEPT Action

Accepts an HTTP object for further processing.

Description

The ACCEPT action stops filters for the current HTTP object and accepts it for further processing by the detectors.

Format

<action name="accept" />

The name attribute:

The name attribute specifies the name of the action - name="accept".

Example:

All messages that reach this rule are accepted for further processing.

<?xml version="1.0" encoding="utf-8"?>
<filter name="HTTP filter" version="1.0">
 <comment>HTTP filter.</comment>
 <table name="main">
 
   <rule enabled="1">
     <match ...> ... </match>
     <action ...> ... </action>
   </rule>
 
   <rule enabled="1">
     <comment>
       All messages that reach this rule are accepted for
       further processing.
     </comment>
     <action name="accept" />
   </rule>
 </table>
</filter>