Question: Develop a Python script to process a memory dump file and ID unique strings of 5-12 characters along with the number of occurences those unique
Develop a Python script to process a memory dump file and ID unique strings of 5-12 characters along with the number of occurences those unique strings. Then display the results and occurences in a prettytable sorted by count.
Regex:
word regx (more specifically continuous alpha string pattern)
wPatt = re.compile(b'[a-zA-Z]{5,15}')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
