Exemplo n.º 1
0
 def get_login_data(self, filepath=""):
     try:
         if not filepath:
             filepath = self.config.folder + self.chrome_folder + "Login Data"
         return sqlite_parser.sqlite_parser(filepath)
     except:
         print "The \"" + filepath + "\" file couldn't be found."
Exemplo n.º 2
0
 def get_history(self, filepath=""):
     try:
         if not filepath:
             filepath = self.config.folder + self.chrome_folder + "History"
         return sqlite_parser.sqlite_parser(filepath)
     except:
         print "The \"" + filepath + "\" file couldn't be found."
Exemplo n.º 3
0
 def get_quotamanager(self, filepath=""):
     try:
         if not filepath:
             filepath = self.config.folder + self.chrome_folder + "QuotaManager"
         return sqlite_parser.sqlite_parser(filepath)
     except:
         print "The \"" + filepath + "\" file couldn't be found."
Exemplo n.º 4
0
 def get_origin_bound_certs(self, filepath=""):
     try:
         if not filepath:
             filepath = self.config.folder + self.chrome_folder + \
                 "Origin Bound Certs"
         return sqlite_parser.sqlite_parser(filepath)
     except:
         print "The \"" + filepath + "\" file couldn't be found."
Exemplo n.º 5
0
 def get_network_action_predictor(self, filepath=""):
     try:
         if not filepath:
             filepath = self.config.folder + self.chrome_folder + \
                 "Network Action Predictor"
         return sqlite_parser.sqlite_parser(filepath)
     except:
         print "The \"" + filepath + "\" file couldn't be found."
Exemplo n.º 6
0
 def get_extension_cookies(self, filepath=""):
     try:
         if not filepath:
             filepath = self.config.folder + self.chrome_folder + \
                 "Extension Cookies"
         return sqlite_parser.sqlite_parser(filepath)
     except:
         print "The \"" + filepath + "\" file couldn't be found."