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
Get step-by-step solutions from verified subject matter experts
