Parse the different files in a Chrome profile
()
| 781 | PrintAndLog(User + u'\'s Chrome LocalStorage is empty', 'INFO') |
| 782 | |
| 783 | def ParseChrome(): |
| 784 | ''' Parse the different files in a Chrome profile ''' |
| 785 | |
| 786 | PrintAndLog(u'Users\' Chrome profiles', 'SUBSECTION') |
| 787 | for User in os.listdir(os.path.join(ROOT_PATH, 'Users')): |
| 788 | UsersChromePath = os.path.join(ROOT_PATH, 'Users', User, 'Library/Application Support/Google/Chrome/Default') |
| 789 | if User[0] != '.' and os.path.isdir(UsersChromePath): |
| 790 | ParseChromeProfile(User, UsersChromePath) |
| 791 | |
| 792 | def ParseBrowsers(): |
| 793 | ''' Call the different functions to parse the browsers ''' |
no test coverage detected