-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyslog-parch.py
88 lines (69 loc) · 2.02 KB
/
syslog-parch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# Author: James Simpson
# Version: 1.0
import smtplib
############################
# #
# FUNCTIONS #
# #
############################
#Function used for sending mail via an unauthenticated or open SMTP relay
def sendmail(FROM, TO, message):
server = smtplib.SMTP('open.relay.address')
server.sendmail(FROM, TO, message)
server.quit()
#Function used for sending mail via an SMTP relay requiring SSL
def sendmail_ssl(FROM, TO, message):
server = smtplib.SMTP_SSL('ssl.smtp.server:465')
server.login('username' 'password')
server.sendmail(FROM, TO, message)
server.quit()
def sort_devices(devices):
sorted_devices = ""
unique_devices = sorted(set(devices))
for device in unique_devices:
sorted_devices += device + "\n"
return sorted_devices
############################
# #
# GENERATE LIST #
# #
############################
switches = []
bpdu = []
log = open("/logs/syslog")
for line in log:
if "MACFLAP" in line:
fields = line.strip().split()
switches.append(fields[3])
elif "BPDU" in line:
fields = line.strip().split()
bpdu.append(fields[3])
log.close
sorted_flaps = sort_devices(switches)
sorted_bpdus = sort_devices(bpdu)
############################
# #
# MESSAGE PARAMS #
# #
############################
FROM = 'gremlins@network'
TO = 'recipient@address.com'
SUBJECT = "Your subject line"
TEXT = sorted_flaps
TEXT2 = sorted_bpdus
message = """\
From: %s
To: %s
Subject: %s
The following devices have reported BPDUGUARD messages: \n
%s
The following devices have reported Mac Address Flapping: \n
%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT2, TEXT)
############################
# #
# SEND EMAIL #
# #
############################
sendmail(FROM, TO, message)