def lootme_windows(outfiles):
try:
import winreg
# to be filled later
except:
print('winreg module not present')
hostloot = ((platform.uname()[1])+"_loot.txt")
outfiles.append(hostloot)
with open(hostloot, 'w') as outFile:
# gather machine info
machine_info(outFile)
# gather extended machine info
machine_info_extra_win(outFile)
# gather user info
user_info_win(outFile)
# gather network info
network_info_win(outFile)
# gather log file IPs
logfile_ips(outFile)
return outfiles
### lootme_windows --end--
### lootme_linux --start--
评论列表
文章目录