Question: In Python, develop a script that can search a memory dump .bin file. Create a script and reg ex to extract and report all email

In Python, develop a script that can search a memory dump .bin file.

Create a script and reg ex to extract and report all email and urls found in the dump.

Dump file is called memory.bin , include importing

Regex used:

ePatt = re.compile(b'[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}') uPatt = re.compile(b'\w+:\/\/[\w@][\w.:@]+\/?[\w.\.?=%&=\-@$,]*')

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!