-
Notifications
You must be signed in to change notification settings - Fork 14
/
ipwatch.py
347 lines (292 loc) · 11.7 KB
/
ipwatch.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#!//usr/bin/env python3
#USAGE: python3 ipwatch.py [config]
#USAGE: ./ipwatch.py [config]
#
#[config] = path to an IPWatch configuration file
#
#Sean Begley
#2021-07-19
# v0.9
#
#This program gets for your external IP address
#checks it against your "saved" IP address and,
#if a difference is found, emails you the new IP.
#This is useful for servers at residential locations
#whose IP address may change periodically due to actions
#by the ISP.
#REFERENCES
#https://github.com/phoemur/ipgetter
import sys
from pathlib import Path
import re
import smtplib
import ipgetter
################
### CLASSES ####
################
#container for config file information
class ConfigInfo:
"This class contains all of the information from the config file"
sender = ""
sender_email = ""
sender_username = ""
sender_password = ""
receiver = []
receiver_email = []
subject_line = ""
machine = ""
smtp_addr = ""
save_ip_path = ""
try_count = ""
def __init__(self):
self.sender = ""
self.sender_email = ""
self.sender_username = ""
self.sender_password = ""
self.receiver = []
self.receiver_email = []
self.subject_line = ""
self.machine = ""
self.smtp_addr = ""
self.save_ip_path = ""
self.try_count = ""
################
## FUNCTIONS ###
################
#help message print
def printhelp():
"Function to print out the help message"
print("""\r\nIPWatch v0.5 by Sean Begley (begleysm@gmail.com)
IPWatch is a tool to check your current external IP address against a saved, previous, external IP address. It should be run as a scheduled task/cronjob periodically. If a difference in the new vs old IP address is found it will dispatch an email describing the change.
USAGE: python3 ipwatch.py [config]
USAGE: ./ipwatch.py [config]
[config] = path to an IPWatch configuration file
EXAMPLE USAGE: ./ipwatch.py /home/bob/ipwatch/config.txt
""")
return
#read config file
def readconfig(filepath, configObj):
"Function to read a config file with email information"
#check if the configfile exists
if Path(filepath).is_file():
#open configfile
configfile = open(filepath, "r")
#read out the contents
lines = configfile.readlines()
#parse the contents
for line in lines:
#ignore comments and blank lines
if (line[:1] != "#" and line.strip()):
#remove trailing whitespace and newline chars
line = line.rstrip()
param = line.rpartition('=')[0]
value = line.rpartition('=')[2]
#print ("param = %s\t\tvalue = %s" % (param, value))
#save parameters in configObj
if (param == "sender"):
configObj.sender = value
elif (param == "sender_email"):
configObj.sender_email = value
elif (param == "sender_username"):
configObj.sender_username = value
elif (param == "sender_password"):
configObj.sender_password = value
elif (param == "receiver"):
#get string of receivers, split into a list, strip leading spaces if present
configObj.receiver = value.split(",")
for i, item in enumerate(configObj.receiver):
configObj.receiver[i] = item.lstrip()
elif (param == "receiver_email"):
#get string of receiver emails, split into a list, strip leading spaces if present
configObj.receiver_email = value.split(",")
for i, item in enumerate(configObj.receiver_email):
configObj.receiver_email[i] = item.lstrip()
elif (param == "subject_line"):
configObj.subject_line = value
elif (param == "machine"):
configObj.machine = value
elif (param == "smtp_addr"):
configObj.smtp_addr = value
elif (param == "save_ip_path"):
configObj.save_ip_path = value
elif (param == "try_count"):
configObj.try_count = value
elif (param == "ip_blacklist"):
configObj.ip_blacklist = value.split(',')
else:
print ("ERROR: unexpected line found in config file: %s" % line)
configfile.close()
return "badline"
#print (configObj.sender)
#print (configObj.sender_email)
#print (configObj.sender_username)
#print (configObj.sender_password)
#print (configObj.receiver)
#print (configObj.receiver_email)
#print (configObj.subject_line)
#print (configObj.machine)
#print (configObj.smtp_addr)
#print (configObj.save_ip_path)
#print (configObj.try_count)
#print (configObj.ip_blacklist)
#close the file
configfile.close()
return 0
else:
print ("ERROR: config file not found")
return "nofile"
#return the current external IP address
def getips(try_count, blacklist):
"Function to return the current, external, IP address"
good_ip = 0
counter = 0
pattern = re.compile("^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$")
#try up to config.try_count servers for an IP
while(good_ip == 0) and(counter < try_count):
#get an IP
external_ip, local_ip, server = ipgetter.myip()
#check to see that it has a ###.###.###.### format
if pattern.match(external_ip) and external_ip not in blacklist:
good_ip = 1
print ("GetIP: Try %d: Good IP: %s" % (counter+1, external_ip))
else:
if external_ip in blacklist:
print ("GetIP: Try %d: Bad IP (in Blacklist): %s" % (counter+1, external_ip))
else:
print ("GetIP: Try %d: Bad IP (malformed): %s" % (counter+1, external_ip))
#increment the counter
counter = counter + 1
#print ("My IP = %s\r\n" % external_ip)
#print ("Server used = %s\r\n" % server)
return external_ip, local_ip, server
#get old IP address
def getoldips(filepath):
"Function to get the old ip address from savefile"
#check if the savefile exists
if Path(filepath).is_file():
#open savefile
savefile = open(filepath, "r")
#check if the content of savefile makes sense
with open(filepath, "r") as infile:
old_text = [line.strip() for line in infile]
if len(old_text) > 1:
old_external_ip = old_text[0].rstrip()
old_local_ip = old_text[1].rstrip()
else:
savefile.close()
return "malformed", "malformed"
# oldip = savefile.read(15).rstrip()
pattern = re.compile("^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$")
if (pattern.match(old_external_ip) and pattern.match(old_local_ip)):
savefile.close()
return old_external_ip, old_local_ip
#print ("oldip = %s\r\n" % oldip)
else:
savefile.close()
return "malformed", "malformed"
#print ("malformed IP or empty file: ignoring\r\n")
else:
return "nofile", "nofile"
#print ("file doesn't exist\r\n")
#write the new IP address to file
def updateoldips(filepath, new_external_ip, new_local_ip):
"Function to update the old ip address from savefile"
#open savefile
savefile = open(filepath, "w")
#write new ip
savefile.write(new_external_ip)
savefile.write("\n")
savefile.write(new_local_ip)
savefile.close()
#send mail with new IP address
def sendmail(old_exernal_ip, old_local_ip, new_external_ip, new_local_ip, server, sender,
sender_email, receivers, receiver_emails, username, password, subject, machine, smtp_addr):
"Function to send an email with the new IP address"
messages = [None]*len(receiver_emails)
error_flag = 0
print("")
for i in range(len(receiver_emails)):
#print(str(i) + ": receiver = " + receivers[i] + "\t\t receiver email = " + receiver_emails[i])
messages[i] = ("""From: """ + sender + """ <"""+ sender_email + """>
To: """ + receivers[i] + """ <""" + receiver_emails[i] + """>
Subject: """ + subject + """
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
The IP address of """ + machine + """ has changed:\nOld external IP = """ + old_external_ip + """\r\nOld local IP = """
+ old_local_ip + """\r\nNew external IP = """ + new_external_ip + """\r\nNew local IP = """ +
new_local_ip + """\r\nThe Server queried was """ + server)
#print (messages)
#print (smtp_addr)
#print (username)
#print (password)
#print (sender)
#print (receiver_emails)
#print (message)
try:
smtpObj = smtplib.SMTP(smtp_addr)
smtpObj.starttls()
smtpObj.login(username, password)
smtpObj.ehlo(name=machine)
smtpObj.sendmail(sender_email, receiver_emails[i], messages[i])
smtpObj.quit()
print ("Successfully sent email " + str(i+1) + " of " + str(len(receiver_emails)) + " to " + receiver_emails[i] + "\r\n")
except Exception as ex:
print ("ERROR: unable to send email " + str(i+1) + " of " + str(len(receiver_emails)) + " to " + receiver_emails[i])
print ("EXCEPTION: " + str(ex) + "\r\n")
error_flag = 1
if (error_flag == 1):
return 1
else:
return 0
################
##### MAIN #####
################
#parse arguments
if (len(sys.argv) != 2):
printhelp()
#print ("len = %d\r\n" % len(sys.argv))
else:
config_path = str(sys.argv[1])
#print ("email = %s" % email)
#print ("machine = %s" % machine)
#print ("savefile = %s" % savefile_path)
#parse config file
config = ConfigInfo()
rc_ret = readconfig(config_path, config)
if (rc_ret == "nofile"):
sys.exit(1)
elif (rc_ret == "badline"):
sys.exit(2)
#print (config.sender)
#print (config.sender_email)
#print (config.sender_username)
#print (config.sender_password)
#print (config.receiver)
#print (config.receiver_email)
#print (config.subject_line)
#print (config.machine)
#print (config.smtp_addr)
#print (config.save_ip_path)
#get the old ip address
old_external_ip, old_local_ip = getoldips(config.save_ip_path)
#print ("Old IP = %s" % oldip)
#get current, external, IP address
curr_external_ip, curr_local_ip, server = getips(int(config.try_count), config.ip_blacklist)
#print ("Curr IP = %s" % external_ip)
#print ("Server used = %s" % server)
#check to see if the IP address has changed
if ((curr_external_ip != old_external_ip) or (curr_local_ip != old_local_ip)):
#send email
print ("Current IP differs from old IP.")
sm_ret = sendmail(old_external_ip, old_local_ip, curr_external_ip, curr_local_ip, server, config.sender, config.sender_email, config.receiver, config.receiver_email, config.sender_username, config.sender_password, config.subject_line, config.machine, config.smtp_addr)
# only update the file if the email was successfully sent
if (sm_ret == 0):
#update file
updateoldips(config.save_ip_path, curr_external_ip, curr_local_ip)
print ("Saved IP address updated.")
else:
print ("Saved IP address NOT updated.")
else:
print ("Current IP = Old IP. No need to send email.")
sys.exit(0)