def load_tools(self):
os.system('clear')
action = 0
self.warning_show()
export = self.export()
raw_input(Back.GREEN + Fore.BLACK + "Report exported : " + os.getcwd() + "/export/" + export + ".html" + Style.RESET_ALL)
while action == 0:
user_input = raw_input('[DOMFf />] ')
if user_input == "help":
print """____________________________________________________________
| appinfo : (Load application information)
| warning : (Load application Warning information)
| clear : (Clear console)
| exit : (Exit DOM Forensics Framework)
------------------------------------------------------------"""
if user_input == "export":
self.export()
if user_input == "appinfo":
self.app_info()
if user_input == "clear":
os.system('clear')
if user_input == "warning":
self.warning_show()
if user_input == "exit":
action = 1
评论列表
文章目录