Jump to content

Recommended Posts

Posted

Hi, i wanted to use this operation in exclusion, but it says it does not exist ('TruncateFile' - an unknown operation type). Is there any option to use FileTruncated that i am unable to write correctly? Lets say i tried this exclusion:

<operations>
        <operation type="TruncateFile">
                <operator type="OR">
                    <condition component="DestFileItem" property="Extension" condition="is" value="dce" />
                    <condition component="DestFileItem" property="Extension" condition="is" value="blabla" />
                </operator>
        </operation>
    </operations>

Should that be used in other operation or not allowed at all? Thanks.

truncatefile.png

  • ESET Staff
  • Solution
Posted

"TruncateFile" is an operation which falls under "WriteFile" (yes, annoying that it isn't clearly labeled as such).  But you should be able to modify your exclusion as follows to allow it to work.

 

<operations>
        <operation type="WriteFile">
                <operator type="OR">
                    <condition component="DestFileItem" property="Extension" condition="is" value="dce" />
                    <condition component="DestFileItem" property="Extension" condition="is" value="blabla" />
                </operator>
        </operation>
    </operations>

 

  • 1 month later...
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...