Skip to main content

Data Leak Prevention (DLP) on Fortigate

Today I would like to present one interesting feature you may find on your Fortigate - Data Leak Prevention. I know there are much better, dedicated solutions on the market but in certain situations the DLP feature available on FortiOS is good enough.

Why you should use it?

This is very important to say: the DLP in such deployment (on Fortigate) can't protect your data against every data leak. Users in your network with his/her mobile can easily take a photo of any document. Why we should still consider it? It is a good (and easy to deploy) method to prevent users' mistakes. It happened hundreds of time when a user attached a wrong file. Sound familiar? Using the DLP you can create policies which stop such leak. Let me show you how you can configure it.

Step #1

First, you have to check if DLP is enabled in a "Feature Visibility" and "Security Features" section:






When you do not see the feature, make sure your Fortigate works in a proxy-based inspection mode:


I know it may be a problem for some of you as a default inspection mode in 5.6 is flow-based (Fortinet introduced NGFW mode in the flow-based inspection mode):



I know in many cases you are not fully aware about such limitation. One of the solution I can recommend is using VDOMs. Your main VDOM can work in flow-based inspection mode, where you can fully use ASIC's capabilities, and second VDOM can work in proxy-based inspection mode where DLP feature is supported.


Step #2

Edit a DLP sensor (profile):



and add a new filter (click +):


In my example I would like to stop files which contain 11 digits,  like this one:




The best method is using a regular expression (PCRE). As you can see my is a quite short: "\d{11}". I set an action to 'block':

What also generate a log entry once it matches string like in my test file. You may notice that only non-encrypted services are on the filter list. You can add SSL full inspection profile to monitor encrypted communication too.


Step #3

In last step you need to attach the new profile (sensor) to a firewall policy:






 Now it's time for test when I try to upload my test file using HTTP. This is the warning message I got:


And what I see in my logs:









You can also test it using CLI:




Summary

As you can see the feature is very easy to deploy. You can start doing small steps, monitor logs and device performance. Remember your Fortigate has to work in the proxy-based inspection mode.

PCRE resources you can find here:


You can test your regex before using here:

https://www.debuggex.com/?flavor=pcre




Comments

Popular posts from this blog

What should you know about HA 'override enabled' setting on Fortigate?

High availability is mandatory in most of today's network designs. Only very small companies or branches can run their business without redundancy. When you have Fortigate firewall in your network you have many options to increase network availability. You can use Fortigate Clustering Protocol ( FGCP ) or Virtual Router Redundancy Protocol ( VRRP ). FGCP has two modes: 'override' disabled (default) and 'override' enabled . I'm not going to explain how to set up HA as you can find many resources on Fortinet websites: https://cookbook.fortinet.com/high-availability-two-fortigates-56/ https://cookbook.fortinet.com/high-availability-with-fgcp-56/ Let's recap what is the main difference between them. The default HA setting is 'override' disabled and this is an order of selection an active unit: 1) number of monitored interfaces - when both units have the same number of working (up) interfaces check next parameter 2) HA uptime - an

MAC Authentication Bypass

One of the method to control your network is using MAB feature. It is helpful in case you have devices without dot1x functionality. Today I will try to implement basic configuration and analyze log messages. There is only one switch SW1 and one device attached to port Fa1/0/2.   ! aaa new - model aaa authentication dot1x default group radius ! ! int Fas1 / 0 / 2 authentication host - mode single - host authentication port - control auto mab ! I haven’t configured ACS yet but let’s see what error message I receive:   SW1 ( config - if ) # mab - ev ( Fa1 / 0 / 2 ): Received MAB context create from AuthMgr mab - ev ( Fa1 / 0 / 2 ): Created MAB client context 0x1100000F mab : initial state mab_initialize has enter mab - ev ( Fa1 / 0 / 2 ): Sending create new context event to EAP from MAB for 0x1100000F ( 0000.0000 . 0000 ) mab - sm ( Fa1 / 0 / 2 ): Received event 'MAB_START' on handle 0x1100000F mab : during state mab_initia

Inpection of asymmetric sessions on FortiGate

There is one feature available on FortiGate, and I think you should know it, as it modifies a bit what we know about stateful firewalls. In past every packet was treated individually and you had to create policies in both directions. With stateful firewalls we can track connections, and by checking couple of attributes, we can treat them as part of the same session. For example when you initiate connection from a host1 to host2, the returning connection from host2 to host1 will be treated as part of the same connection (session). They have to have the same source/destination and destination/source IPs, port numbers and interfaces.There is an exception from this rule and FortiGate in some specific cases can accept connections on port which was not used in the initial connection. Let me explain how it works on the below example:      The host1 has a default gateway on R1 (10.0.1.2), but you may notice that it is not the optimal path to host2 subnet. When we analyze the packet flo