MCPcopy Index your code
hub / github.com/jipegit/OSXAuditor / ParseSafari

Function ParseSafari

osxauditor.py:729–734  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

727 PrintAndLog(User + u'\'s Safari LocalStorage is empty', 'INFO')
728
729def 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
736def ParseChromeProfile(User, Path):
737 ''' Parse the different SQLite databases in a Chrome profile '''

Callers 1

ParseBrowsersFunction · 0.85

Calls 2

PrintAndLogFunction · 0.85
ParseSafariProfileFunction · 0.85

Tested by

no test coverage detected