This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1473 from mozilla/ldap_bruteforce_alert
Add LDAP bruteforce alert
- Loading branch information
Showing
3 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[options] | ||
threshold_count = 1 | ||
search_depth_min = 60 | ||
host_exclusions = foo.example.com,bar.example.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/usr/bin/env python | ||
|
||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
# Copyright (c) 2014 Mozilla Corporation | ||
|
||
|
||
from lib.alerttask import AlertTask | ||
from mozdef_util.query_models import SearchQuery, TermMatch | ||
|
||
|
||
class AlertLdapBruteforce(AlertTask): | ||
def main(self): | ||
self.parse_config('ldap_bruteforce.conf', ['threshold_count', 'search_depth_min', 'host_exclusions']) | ||
search_query = SearchQuery(minutes=int(self.config.search_depth_min)) | ||
search_query.add_must_not(TermMatch('details.user', '')) | ||
search_query.add_must([ | ||
TermMatch('category', 'ldap'), | ||
TermMatch('details.response.error', 'LDAP_INVALID_CREDENTIALS'), | ||
]) | ||
|
||
for host_exclusion in self.config.host_exclusions.split(","): | ||
search_query.add_must_not([TermMatch("details.server", host_exclusion)]) | ||
|
||
self.filtersManual(search_query) | ||
self.searchEventsAggregated('details.user', samplesLimit=10) | ||
self.walkAggregations(threshold=int(self.config.threshold_count)) | ||
|
||
def onAggregation(self, aggreg): | ||
category = 'ldap' | ||
tags = ['ldap'] | ||
severity = 'WARNING' | ||
client_list = set() | ||
|
||
for event in aggreg['allevents']: | ||
client_list.add(event['_source']['details']['client']) | ||
|
||
summary = 'LDAP Bruteforce Attack in Progress against user ({0}) from the following source ip(s): {1}'.format( | ||
aggreg['value'], | ||
", ".join(sorted(client_list)[:10]) | ||
) | ||
if len(client_list) >= 10: | ||
summary += '...' | ||
|
||
return self.createAlertDict(summary, category, tags, aggreg['events'], severity) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
# Copyright (c) 2017 Mozilla Corporation | ||
from .positive_alert_test_case import PositiveAlertTestCase | ||
from .negative_alert_test_case import NegativeAlertTestCase | ||
|
||
from .alert_test_suite import AlertTestSuite | ||
|
||
|
||
class TestAlertLdapBruteforce(AlertTestSuite): | ||
alert_filename = "ldap_bruteforce" | ||
# This event is the default positive event that will cause the | ||
# alert to trigger | ||
default_event = { | ||
"_source": { | ||
"category": "ldap", | ||
"details": { | ||
"client": "1.2.3.4", | ||
"requests": [ | ||
{ | ||
'verb': 'BIND', | ||
'details': [ | ||
'method=128' | ||
'dn="mail=jsmith@example.com,o=com,dc=example"', | ||
] | ||
} | ||
], | ||
"server": "ldap.example.com", | ||
"user": "jsmith@example.com", | ||
"response": { | ||
"error": 'LDAP_INVALID_CREDENTIALS', | ||
} | ||
} | ||
} | ||
} | ||
|
||
# This alert is the expected result from running this task | ||
default_alert = { | ||
"category": "ldap", | ||
"tags": ["ldap"], | ||
"severity": "WARNING", | ||
"summary": "LDAP Bruteforce Attack in Progress against user (jsmith@example.com) from the following source ip(s): 1.2.3.4", | ||
} | ||
|
||
# This alert is the expected result from this task against multiple matching events | ||
default_alert_aggregated = AlertTestSuite.copy(default_alert) | ||
default_alert_aggregated[ | ||
"summary" | ||
] = "LDAP Bruteforce Attack in Progress against user (jsmith@example.com) from the following source ip(s): 1.2.3.4" | ||
|
||
test_cases = [] | ||
|
||
test_cases.append( | ||
PositiveAlertTestCase( | ||
description="Positive test with default events and default alert expected", | ||
events=AlertTestSuite.create_events(default_event, 10), | ||
expected_alert=default_alert, | ||
) | ||
) | ||
|
||
test_cases.append( | ||
PositiveAlertTestCase( | ||
description="Positive test with default events and default alert expected - dedup", | ||
events=AlertTestSuite.create_events(default_event, 2), | ||
expected_alert=default_alert, | ||
) | ||
) | ||
|
||
events = AlertTestSuite.create_events(default_event, 10) | ||
for event in events: | ||
event["_source"]["details"]["response"]["error"] = "LDAP_SUCCESS" | ||
test_cases.append( | ||
NegativeAlertTestCase( | ||
description="Negative test with default negative event", events=events | ||
) | ||
) | ||
|
||
events = AlertTestSuite.create_events(default_event, 10) | ||
for event in events: | ||
event["_source"]["category"] = "bad" | ||
test_cases.append( | ||
NegativeAlertTestCase( | ||
description="Negative test case with events with incorrect category", | ||
events=events, | ||
) | ||
) | ||
|
||
events = AlertTestSuite.create_events(default_event, 10) | ||
for event in events: | ||
event["_source"][ | ||
"utctimestamp" | ||
] = AlertTestSuite.subtract_from_timestamp_lambda({"minutes": 241}) | ||
event["_source"][ | ||
"receivedtimestamp" | ||
] = AlertTestSuite.subtract_from_timestamp_lambda({"minutes": 241}) | ||
test_cases.append( | ||
NegativeAlertTestCase( | ||
description="Negative test case with old timestamp", events=events | ||
) | ||
) |