Cyber File Tracer GUI App using Python (Tkinter) – FuzzuTech Viral Tech Demo
Demo :
Click Video πππ
π Description:
Create a fake System Intrusion Simulation GUI with Python’s Tkinter + CustomTkinter. Mimics a Hollywood-style hacker control panel with auto-logs, LED status, and more. Purely for fun, pranks, or demos. Full source code included.
Code :
import tkinter as tk
import customtkinter as ctk
import time
import random
ctk.set_appearance_mode("dark")
ctk.set_default_color_theme("green")
app = ctk.CTk()
app.title("Cyber File Tracer GUI")
app.geometry("600x400")
def trace_file():
output_text.configure(state='normal')
output_text.delete("1.0", tk.END)
fake_data = [
"Initializing trace protocol...",
"Scanning local network...",
f"Found suspicious IP: 192.168.{random.randint(1,255)}.{random.randint(1,255)}",
"Intercepting packets...",
"Decrypting metadata...",
"Locating file source...",
f"Target file path: /var/trace/logs/target_{random.randint(100,999)}.log",
"Mapping IP to geolocation...",
f"Target traced to: {random.choice(['USA', 'Germany', 'Russia', 'India', 'Brazil'])}",
"Trace Complete ✅"
]
for line in fake_data:
output_text.insert(tk.END, line + "\n")
output_text.update()
time.sleep(0.6)
output_text.configure(state='disabled')
title = ctk.CTkLabel(app, text="Cyber File Tracer", font=("Arial", 24))
title.pack(pady=10)
trace_btn = ctk.CTkButton(app, text="Start File Trace", command=trace_file)
trace_btn.pack(pady=20)
output_text = tk.Text(app, height=12, bg="black", fg="lime", font=("Courier", 12), state='disabled')
output_text.pack(padx=20, pady=10, fill="both", expand=True)
app.mainloop()
Comments
Post a Comment