Gateway Threat Protectors¶
MWARE ESB has three types of threat protectors for the Gateway.
- Regular Expression Threat Protection for API Gateway
- JSON Threat Protection for API Gateway
- XML Threat Protection for API Gateway
Combining threat protectors¶
You can use a combination of the threat protectors given above to validate the messages and protect your gateway from attacks. An example custom mediation policy which which validates the API request against XML and regex valdators is given below.
<sequence xmlns="http://ws.apache.org/ns/synapse" name="combinevalidator">
<property name="xmlValidation" value="true"/>
<property name="dtdEnabled" value="false"/>
<property name="externalEntitiesEnabled" value="true"/>
<property name="maxXMLDepth" value="30"/>
<property name="maxElementCount" value="30"/>
<property name="maxAttributeCount" value="30"/>
<property name="maxAttributeLength" value="30"/>
<property name="entityExpansionLimit" value="30"/>
<property name="maxChildrenPerElement" value="30"/>
<property name="schemaValidation" value="true"/>
<switch source="get-property('To')">
<case regex=".*/addResource.*">
<property name="xsdURL" value="http://localhost:8000/shiporder.xsd"/>
</case>
</switch>
<class name="org.wso2.carbon.apimgt.gateway.mediators.XMLSchemaValidator"/>
<property name="threatType" expression="get-property('threatType')" value="SQL-Injection"/>
<property name="regex" expression="get-property('regex')" value=".*'.*|.*ALTER.*|.*ALTER TABLE.*|.*ALTER VIEW.*|
.*CREATE DATABASE.*|.*CREATE PROCEDURE.*|.*CREATE SCHEMA.*|.*create table.*|.*CREATE VIEW.*|.*DELETE.*|.
*DROP DATABASE.*|.*DROP PROCEDURE.*|.*DROP.*|.*SELECT.*"/>
<property name="enabledCheckBody" expression="get-property('checkBodyEnable')" value="true"/>
<property name="enabledCheckHeaders" expression="get-property('enabledCheckHeaders')" value="true"/>
<property name="enabledCheckPathParams" expression="get-property('enabledCheckPathParams')" value="true"/>
<class name="org.wso2.carbon.apimgt.gateway.mediators.RegularExpressionProtector"/>
</sequence>
Add a custom sequence¶
You can add custom sequences depending on the threats that you need to address. You can create a policy using the custom sequence and attach it to the API. Please refer API Policies for more information on how to attach a policy to an API
Top