I receive a fair few emails a week detailing abusive activity originating from a network that I am involved with. These usually contain either:
a) A URL deemed as being compromised.
or
b) A copy of an email that is considered spam.
Most of these are automated, and typically don't follow the ARF very well.
What I need is automated data extraction, but I am racking my head because I am not so sure how to do it when the structure of the email is changing and unpredictable.
What I am looking to extract at the moment is:
a) Originating Mail Servers for Spam (And also the UID/Username, which is shown in most Exim/Qmail Received Headers)
b) Domain Names
c) URLs for compromised sites
d) Email Addresses
I can do this with no sweat using some regexes and a bit of other junk, but basically it is unreliable. By parsing the email body I may end up with 5 IPs, 3 URLs, and 3 email addresses, and I am unsure of how to automatically pick the best fit.
I need some direction as to what I should be researching/looking for in order to make the best automatic judgement about what the correct data is. I have over 100,000 past report emails, so there is no shortage of test data, I just need to know how to get started and what I should be looking into to solve this problem.
Thanks for taking the time to read this, please let me know if I have missed something or if there are other questions :)
FYI, I have considered the following:
Insersecting several past emails from this sender that have been classified, and then doing a set difference against the new email. I have no idea on the best way to do this though apart from hardcoding some algorithms using python sets + lists.
Plotting all my previous data onto various forms of ScatterPlot/Histogram. I would then be able to test each new email against the existing data and pick out the details that are least prevailant within the graph. Once again, I am not sure of what libraries I should be looking for here.
Using the sample data to put a weight against previously seen items. I.e. If I put up a page of 1000 previous samples, and 'mark-down' the IPs which are never going to be correct, and marking up IPs that could be correct.
Writing a tangle of code involving socket lookups to resolve hostnames and match items together. I know that this will be intensive to run, but it will most likely get the best results.
Cheers!