config.xml
<?xml version="1.0" encoding="utf-8" ?>
<Configuration> <Rules> <Rule> <Name>Web Request</Name> <Conditions> <Condition> <Property>command</Property> <Operator>contains</Operator> <Value>webrequest</Value> </Condition> <Condition> <Property>command</Property> <Operator>contains</Operator> <Value>invoke</Value> </Condition> </Conditions> <Actions> <ActionRef> <Name>File</Name> </ActionRef> <ActionRef> <Name>Block</Name> </ActionRef> </Actions> </Rule> </Rules> <Actions> <Action> <Name>File</Name> <Type>File</Type> <Settings> <Setting> <Name>Path</Name> <Value>%temp%\test.txt</Value> </Setting> <Setting> <Name>Format</Name> <Value>{applicationName},{rule}</Value> </Setting> </Settings> </Action> <Action> <Name>Block</Name> <Type>Block</Type> </Action> </Actions> </Configuration> |