From 341916e82e60c0c5c1b8782f4f255d5069578407 Mon Sep 17 00:00:00 2001 From: Phrozyn Date: Fri, 6 Sep 2019 11:55:00 -0500 Subject: [PATCH] allows the alert to wrap in UI alerts page. --- alerts/ldap_password_spray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alerts/ldap_password_spray.py b/alerts/ldap_password_spray.py index e8f830d06..90eca1b9f 100644 --- a/alerts/ldap_password_spray.py +++ b/alerts/ldap_password_spray.py @@ -43,7 +43,7 @@ def onAggregation(self, aggreg): summary = 'LDAP Password Spray Attack in Progress from {0} targeting the following account(s): {1}'.format( aggreg['value'], - ",".join(sorted(email_list)[:10]) + ", ".join(sorted(email_list)[:10]) ) if len(email_list) >= 10: summary += '...'