Posts

Showing posts with the label Anonymous App

Anonymous Identity Masker Tool – FuzzuTech | Stay Hidden Online 🕵️ (Python GUI App)

Image
  Demo : Click Video 👇👇👇 ✨ Features: Generate random full name, email, IP & MAC in 1 click Clipboard copy feature for every field Built with Python + CustomTkinter Dark UI theme No internet required Small-size offline tool Code : import customtkinter as ctk from faker import Faker import pyperclip from PIL import Image, ImageTk import os fake = Faker() # Initialize app ctk.set_appearance_mode("dark") ctk.set_default_color_theme("dark-blue") app = ctk.CTk() app.title("Anonymous Identity Masker - FuzzuTech") app.geometry("600x580") app.resizable(False, False) # Load Icon (Optional) icon_path = os.path.join("assets", "icon.png") if os.path.exists(icon_path):     try:         app.iconbitmap(icon_path)     except:         pass # Title Label ctk.CTkLabel(app, text="🕵️ Anonymous Identity Generator", font=("Courier", 22, "bold")).pack(pady=10) # Output Fields fields = {     ...