Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: te(encrypted_password + 'n') f.write(encrypted_computer_name) f.close() f = open("Session.dat", "r") data = f.read() d_data = bz2.decompress(data) f.close() print(d_data) username import os import bz2 #os.chdir("D:/test") username = 'username' password = 'password' computer_name = os.environ['COMPUTERNAME'] compressed = bz2.compress(username + '' + password + '' + computer_name) with open("Session.dat", "wb") as f: f.write(compressed) with […]
↧