()
| 727 | PrintAndLog(User + u'\'s Safari LocalStorage is empty', 'INFO') |
| 728 | |
| 729 | def ParseSafari(): |
| 730 | PrintAndLog(u'Users\' Safari profiles', 'SUBSECTION') |
| 731 | for User in os.listdir(os.path.join(ROOT_PATH, 'Users')): |
| 732 | UserSafariProfilePath = os.path.join(ROOT_PATH, 'Users', User, 'Library/Safari') |
| 733 | if User[0] != '.' and os.path.isdir(UserSafariProfilePath): |
| 734 | ParseSafariProfile(User, UserSafariProfilePath) |
| 735 | |
| 736 | def ParseChromeProfile(User, Path): |
| 737 | ''' Parse the different SQLite databases in a Chrome profile ''' |
no test coverage detected