Hello, I'm trying to see email address with regular expression from a specific source IP that is doing spam from the corporate office. I m using EnCase Software for data analysis and I need to create a full listing email and IP destination. Is there a way to capture frame who contains Email Address and to see them in a column ? I'm using tis command : ip.src==192.168.217.128/24 frame contains "mailto:" but I would like to use regex to catch the destination email target I'm using those regex for the email but I do not know how to input them in Wireshark :
Is there anybody who could help me please ? thx http://imagebin.org/256053 http://imagebin.org/256054 http://imagebin.org/256056 asked 02 May '13, 01:06 arnaud68fr |
2 Answers:
Your question is really off-topic on this site, as we are discussing Wireshark issues here and not Encase product configuration issues. I'm sure you have a valid license and thus your are entitled to call the Encase support hotline regarding any product configuration issues. Regards answered 02 May '13, 04:12 Kurt Knochner ♦ |
If you want to match packets that contain the whole string, you can use:
However, the whole string can be split accross packets which the filter does not catch. Over what protocols do you expect the email addresses to be sent? Http? If so, make sure you have reassembly enabled and then use the filter:
But other tools might be a better choice in your case. answered 02 May '13, 04:43 SYN-bit ♦♦ Dear Kurt and SYN-bit, Thanks a lot for your help, it's working fine. Best regards, Arnaud (02 May '13, 08:59) arnaud68fr |
Why creating a forum if I m not allow to post question ?? This is not a encase problem (cause I have some answer with encase) I need to give answer in real time for my company ? This is a law problem, I have to give information about a user who is doing sex spam.
I think that my question is not out of topic !! but reality for french law's in enterprise.
well, you are allowed to post a question. In fact I'm currently answering your question.
As you are asking for a Wireshark regexp, here we go.
Pleas use this Display filter.
The regexp may not be perfect, but it will match everything that looks like an e-mail address
As you don't know how the domain looks like (could be
[email protected]
) I did not restrict the length of the pattern, which might also then match to something that is not a valid domain/host name.