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

Function ParseChrome

osxauditor.py:783–790  ·  view source on GitHub ↗

Parse the different files in a Chrome profile

()

Source from the content-addressed store, hash-verified

781 PrintAndLog(User + u'\'s Chrome LocalStorage is empty', 'INFO')
782
783def 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
792def ParseBrowsers():
793 ''' Call the different functions to parse the browsers '''

Callers 1

ParseBrowsersFunction · 0.85

Calls 2

PrintAndLogFunction · 0.85
ParseChromeProfileFunction · 0.85

Tested by

no test coverage detected