From cc26d6ba5d35a6420705f1f0c35d0e716837e9b2 Mon Sep 17 00:00:00 2001 From: Cicompre Date: Tue, 9 Jul 2024 01:12:20 +0200 Subject: [PATCH] Update instagram.py --- instagram.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/instagram.py b/instagram.py index c54a339..cac6671 100644 --- a/instagram.py +++ b/instagram.py @@ -19,14 +19,14 @@ class Engine(object): - def __init__(self, username, threads, passlist_path, is_color): + def __init__(self, miriambuttaci, threads, passlist_path, is_color): self.resume = False self.is_alive = True self.threads = threads - self.username = username + self.username = miriambuttaci self.passlist_path = passlist_path self.display = Display(is_color=is_color) - self.bruter = Bruter(username, threads, passlist_path) + self.bruter = Bruter(miriambuttaci, threads, passlist_path) def get_user_resp(self): return self.display.prompt( @@ -35,8 +35,8 @@ def get_user_resp(self): def write_to_file(self, password): with open(credentials, "at") as f: - data = "Username: {}\nPassword: {}\n\n".format( - self.username.title(), password + data = "miriambuttaci: {}\nPassword: {}\n\n".format( + self.miriambuttaci.title(), password ) f.write(data)