示例#1
0
文件: browser.py 项目: Daudau/daf
 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."
示例#2
0
文件: browser.py 项目: Daudau/daf
 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."
示例#3
0
文件: browser.py 项目: Daudau/daf
 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."
示例#4
0
文件: browser.py 项目: Daudau/daf
 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."
示例#5
0
文件: browser.py 项目: Daudau/daf
 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."
示例#6
0
文件: browser.py 项目: Daudau/daf
 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."