Lab-11-Investigating Browser History
Lab-11-Investigating Browser History
Exam IE logs
1
Can you find the version number?
Use Windows Registry hive shell (hivexsh)
Install hivexsh
Step 2.
Identify directory/file paths related to the web browser history
2
Internet Explorer 11 History
Copy IE 8 History
3
Copy Chrome History
Step 2.
View IE 11 History Using libesedb
Find the file type of WebCacheV01.dat
Install libesedb
4
Create three lines with three attributes
Calculate sum
echo -e "Frank manager 50000 \nAlex clerk 45000 \nEirc clerk 25000" | awk '{sum +=$3} ; END
{print sum}'
5
Separate fields with tab ‘\t’ and show ModifiedTime and URL
awk '{print NR, $13, $18}' FS='\t' webhistory/IE11.export/Container_1.4 | head -n 5
Count the number records in all files start with the string “Container”
awk '{print NR, $13, $18}' FS='\t' webhistory/IE11.export/Container* | wc -l
Step 3.
List all search keywords using web browsers. (Timestamp, URL, keyword...)
IE browser
Web Query String
https://www.bing.com/search?q=myteststring&src=IE-
SearchBox&FORM=IEMAE2&pc=EUPP
6
Regular expression for bing.com search
https://regexr.com/
7
YOU MUST SUBMIT A FULL-SCREEN IMAGE FOR FULL CREDIT!
Save the document with the filename "YOUR NAME Lab 11.pdf", replacing "YOUR
NAME" with your real name.
Email the image to the instructor as an attachment to an e-mail message. Send it
to: [email protected] with a subject line of "Lab 11 From YOUR NAME", replacing "YOUR
NAME" with your real name.