I helped one of my customers implement a use case last year that entailed sending email alerts to specific users when those users logged into legacy applications within their environment.
Creating the alerts for this activity with the ESA was rather trivial - we knew which event source would generate the logs and the meta to trigger against - but sending the alert via email to the specific user that was ID'd in the alert itself added a bit of complexity.
Fortunately, others have had similar-ish requirements in the past and there are guides on the community that cover how to generate custom emails for ESA alerts through the script notification option, such as Custom ESA email template with raw event payload and 000031690 - How to send customized subjects in an RSA Security Analytics ESA alert email.
This meant that all we had to do was map the usernames from the log events to the appropriate email addresses, enrich the events and/or alerts with those email addresses, and then customize the email notification using that information. Mapping the usernames to email addresses and adding this information to events/alerts could have been accomplished in a couple different ways - either a custom Feed (Live: Create a Custom Feed) or an In-Memory Table (Alerting: Configure In-Memory Table as Enrichment Source) - for this customer the In-Memory Table was the preferred option because it would not create unnecessary meta in their environment.
We added the CSV containing the usernames and email addresses as an enrichment source:
....then added that enrichment to the ESA alert:
With these steps done, we triggered a couple alerts to see exactly what the raw output looked like, specifically how the enrichment data was included. The easiest way to find raw alert output is within the respond module by clicking into the alert and looking for the "Raw Alert" pane:
Armed with this information, we were then able to write the script (copy/pasting from the articles linked above and modifying the details) to extract the email address and use that as the "to_addr" for the email script (also attached at the bottom of this post):
#!/usr/bin/env python
from smtplib import SMTP
import datetime
import json
import sys
def dispatch(alert):
"""
The default dispatch just prints the 'last' alert to /tmp/esa_alert.json. Alert details
are available in the Python hash passed to this method e.g. alert['id'], alert['severity'],
alert['module_name'], alert['events'][0], etc.
These can be used to implement the external integration required.
"""
with open("/tmp/esa_alert.json", mode='w') as alert_file:
alert_file.write(json.dumps(alert, indent=True))
def read():
#Parameter
smtp_server = "<your_mail_relay_server>"
smtp_port = "25"
# "smtp_user" and "smtp_pass" are necessary
# if your SMTP server requires authentication
# used in "smtp.login()" below
#smtp_user = "<your_smtp_user_name>"
#smtp_pass = "<your_smtp_user_password>"
from_addr = "<your_mail_sending_address>"
missing_msg = ""
to_addr = "" #defined from enrichment table
# Get data from JSON
esa_alert = json.loads(open('/tmp/esa_alert.json').read())
#Extract Variables (Add as required)
try:
module_name = esa_alert["module_name"]
except KeyError:
module_name = "null"
try:
to_addr = esa_alert["events"][0]["user_emails"][0]["email"]
except KeyError:
missing_msg = "ATTN:Unable to retrieve from enrich table"
to_addr = "<address_to_send_to_when_enrichment_fails>"
try:
device_host = esa_alert["events"][0]["device_host"]
except KeyError:
device_host = "null"
try:
service_name = esa_alert["events"][0]["service_name"]
except KeyError:
host_dst = "null"
try:
user_dst = esa_alert["events"][0]["user_dst"]
except KeyError:
user_dst = "null"
# Sends Email
smtp = SMTP()
smtp.set_debuglevel(0)
smtp.connect(smtp_server,smtp_port)
date = datetime.datetime.now().strftime( "%m/%d/%Y %H:%M" ) + " GMT"
subj = "Login Attempt on " + ( device_host )
message_text = ("Alert Name: \t\t%s\n" % ( module_name ) +
" \t\t%s\n" % ( missing_msg ) +
"Date/Time : \t%s\n" % ( date ) +
"Host: \t%s\n" % ( device_host ) +
"Service: \t%s\n" % ( service_name ) +
"User: \t%s\n" % ( user_dst )
)
msg = "From: %s\nTo: %s\nSubject: %s\nDate: %s\n\n%s\n" % ( from_addr, to_addr, subj, date, message_text )
# "smtp.login()" is necessary if your
# SMTP server requires authentication
#smtp.login(smtp_user,smtp_pass)
smtp.sendmail(from_addr, to_addr, msg)
smtp.quit()
if __name__ == "__main__":
dispatch(json.loads(sys.argv[1]))
read()
sys.exit(0)
And the result, after adding the script as a notification option within the ESA alert:
-----------------------------
Of course, all of this can and should be modified to include whatever information you might want/need for your use case.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.