Custom Rules using Domain Specific Language

Custom Rules using Domain Specific Language

Build custom rules under Policies > Security Posture > Profiles & Rules using Domain Specific Language (DSL) for Security Assessment of AWS, Azure, and Google Cloud resources. 

The following syntax diagram represents the general rule to write a DSL statement.

rule_should_not.png

Rule Format: <entity> [where <condition>] should [not] have <condition>

For example,

S3Bucket should not have any ACL in (10.0.0.0)
IAMUser where Name eq “root” should have Password.Enabled eq true and MFAActive eq true
Entity

An entity defines what the rule is checking against. It can be used alone or with a condition to further specify the entity.

entity.png

Here are some examples of using an entity.

<entity> should have <condition>S3Bucket should have LoggingEnabled

AADuser should not have Type eq “Guest”

<entity> where <condition>

The “where” condition further defines the entity to narrow down the result.

IAMUser where Name eq “root” and MFAActive eq true

AWS where CloudTrails with [ MultiRegionTrailEnabled eq true ]

For a complete list of supported entities and attributes, see

Condition

A condition is a standard that the rule uses to check against an entity to narrow down the result.

condition.png

The following table provides examples of using a condition. The formats in this table are applicable to all properties.

<property>AWS should have CloudTrails
<property> [func()] <operator> <value>IAMUser should have Name eq “root”

IAMUser should have Policies.Managed len() eq 0

<property> with/contain <condition>AWS should have IAMUsers with [ Name eq “root” ]
<property> in/notin (<value1>, <value2>, <value3>)IAMUser should have Name in ( “root”, “name2” )
use quantifiers for list and sequence propertiesIAMUser should have atleast one Password eq “1234”
use and, or, not, ( ) for complex conditionsIAMUser should have (Name eq “root”) and (MFAActive eq true)
Function

Use functions in rules to find specific information about entities. Functions use the following syntax,

<entity> <function>(<argument>)

For example,

S3Bucket should have Tags len ( ) gt 0

Protocol in ("-1", "tcp")

The following table provides a complete list of functions available to use in rules.

FunctionProperty TypesArgumentsReturns property typeDescription
lenlist, stringnonenumberReturns the length of string or list.
numhostsipnonenumberNumber of hosts in subnet.
isPrivateipnonebooleanWhether IP is private (IPy).
isPublicipnonebooleanWhether IP is public (IPy).
divisiblebynumbernumberbooleanWhether LHS number is divisible by argument.
in, notinstring, boolean, ip, numberlistbooleanWhether LHS value is in list (shortcut for long OR).
haslistlistbooleanWhether LHS list contains any one of the lists passed in as argument.
isLaterThannumber (date)number, unitsbooleanWhether LHS number (date) is later than current time +/- number units (arguments). For example, isLaterThan ( -1, “days”) means LHS is later than 1 day ago (from scan time). Units must be one of the following: seconds|minutes|hours|days|weeks.

“days” is most common.

isEarlierThannumber (date)number, unitsbooleanWhether LHS number (date) is earlier than current time +/- number units (arguments). For example, Password.LastUsedTime isEarlierThan ( -90, “days”)). Units must be one of the following: seconds|minutes|hours|days|weeks.

“days” is most common.

Property

Property is used to define the condition the rule is checking as well as to narrow down the entity the rule is checking against. Property can be nested using “.” such as, MFADevices.Virtual where the rule checks for all the virtual devices.

The following is the syntax format.

<entity> should [not] have <property>...

<entity> where <property>...

The following table provides the list of property types and the functions they support.

Property TypeOperators and FunctionsExample
listin, notin, contain, with, len()IAMUsers with [ Name eq “root” ]
sequencein, notinMFADevices in ( “ID1”, “ID2” )
stringeq, neq, like, not like, len()Name eq “root”
numbereq (=), neq (!=), gt (>), gte (>=), lt (<), lte (<=)Topic.Subscriptions len() > 0
booleaneq, neqPassword.Enabled eq true
ipeq, neqIPRanges with [ ip eq 0.0.0.0/0 ]
Compliance Rules

Netskope provides a list of predefined rules to check your IaaS and SaaS environment for security posture compliance. For a complete list of predefined rules, see:

Common elements used to write a DSL rule

The following elements are commonly used in a DSL rule.

  • with – To access the elements in any list.
  • .
  • where – To restrict evaluated assets.
  • Operators – Such as, eq, gte, gt, lt, lte, neq.
  • Functions – Such as, like, has, in, len, isEarlierThan, isLaterThan, len.
  • Numeric range syntax – For example, to check for port 137 and port 138, include the following in the syntax.
    FromPort lte 138 and ToPort gte 13

    Note

    Will match any security group or firewall ruleset that has a port range including 137, 138 or both.

Custom DSL rule writing best practices

The following best practices are recommended when writing custom DSL rules.

  1. Start by looking at existing predefined rules. If a predefined rule can perform the required checks on your IaaS resources, add the rule to your custom profile.
  2. If an existing rule partially satisfies your requirement, then copy and modify the existing rule.
  3. Check the property types and expected values on the Cloud Service Provider (CSP) side and Netskope supported entities. The types and hierarchy may differ. To check the property types and values:
    • on the CSP side use the CSP test environment through CLI.
    • on Netskope side use the Inventory API. For example, get details about the S3 Bucket resources in AWS run,
      curl --request GET "https://&amp;lt;tenant_url&amp;gt;/api/v1/public_cloud/inventory?token=NS_API_TOKEN&amp;amp;limit=10&amp;amp;skip=0&amp;amp;resource_name=&amp;lt;name_of_asset&amp;gt;&amp;amp;resource_type=S3Bucket" | python -mjson.tool
  4. Test the new custom rule by running a command like the following:
    curl --location --request POST "https://<tenant_url>/api/v1/public_cloud/rule_evaluate?token=NS_API_TOKEN" --header 'Content-Type: application/json' --data-raw '{ "cloud_provider": "aws", "rule_code": "S3Bucket should not have Access eq "Public"",  "instance": "NS_UI_CONNECTION_INSTANCE",  "resource_ids": [  ]  }'

    Ensure that the instance name matches the name configured in your AWS tenant stack.

  5. Debug the rule based on the test results. Netskope recommends testing the rule using at least two property values where one matches the rule, and the other does not. For example, test using different users such as, root, admin, non-admin. When testing policies, test using both inline and managed policies.
  6. Consider false positives and false negatives in the rule output and refine the rule.
    • Include a “where” clause in your rule. For example, to flag any non-root users that haven’t logged in, in the past 90 days write a rule like,
      IAMUser where RootUser eq False and LastUsedTime isEarlierThan ( -90, "days" ) 
    • Make sure you know the CSP entities and how they’re configured. It is important to know all values that are allowed for the property to ensure that there aren’t missing values. For example, to check a TCP protocol you must understand that in addition to tcp-only (“tcp”) there is a wildcard “All Protocols” which is saved as -1.

      Refer to the Netskope documentation as well as the CSP documentation to understand all supported values for an attribute field.

Share this Doc

Custom Rules using Domain Specific Language

Or copy link

In this topic ...