Posts

Showing posts with the label FuzzuTech Tools

APK Strings Extractor GUI – FuzzuTech | Python Ethical Hacking Tool

Image
  Demo : Click Video ๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡ ๐Ÿงพ Description : Discover hidden strings, suspicious URLs, or encoded data inside APK files with this custom-built Python GUI tool. The "APK Strings Extractor – FuzzuTech" makes it easy for ethical hackers, developers, and cybersecurity enthusiasts to analyze APK content using a dark-themed tkinter interface. Perfect for quick analysis & reporting. Free, open-source, and beginner-friendly! ๐Ÿงฉ Features : ๐Ÿ” Scan & Extract strings from .apk files ๐Ÿ“ฆ Supports .xml , .json , .arsc , .dex , .txt ๐ŸŽจ Sleek Dark Theme GUI with tkinter ๐Ÿ“ Save extracted results to .txt ๐Ÿง  Regex-based smart string capture ๐Ÿ’ป Built with Python | Open Source Code : import tkinter as tk from tkinter import filedialog, messagebox, scrolledtext import re import zipfile import os class APKStringExtractor:     def __init__(self, root):         self.root = root         self.root.title("APK Strings Extractor...

๐Ÿ”’ Fake Email Generator with Clipboard Copy – Python GUI Tool by FuzzuTech

Image
  Demo : Click Video ๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡ ๐Ÿ“‹ Features: ✅ Generates fake emails randomly ✅ Copies email to clipboard with one click ✅ Lightweight, offline & beginner-friendly ✅ GUI built using tkinter , clipboard with pyperclip ๐Ÿ” Great for dummy testing, spam protection, or fun tools ๐Ÿ’ก A perfect snippet for developers, testers, and Python hobbyists! Code : import tkinter as tk from tkinter import messagebox import pyperclip import random import string # Fake Email Generator Function def generate_fake_email():     domains = ['fuzzumail.com', 'mailfuzzu.org', 'emailfuzz.net']     name = ''.join(random.choices(string.ascii_lowercase + string.digits, k=8))     domain = random.choice(domains)     return f"{name}@{domain}" # Button Action def generate_and_copy():     email = generate_fake_email()     email_var.set(email)     pyperclip.copy(email)     messagebox.showinfo("Copied!", "Fake email copied ...

๐Ÿ” Java Secure Login GUI using SHA-256 | Eye Toggle GUI – FuzzuTech

Image
  Demo : Click Video ๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡ ๐Ÿ“Œ Features Embedded YouTube Short 1 Screenshot of GUI Code Highlights ( MessageDigest , JPasswordField , ActionListener ) Feature List: SHA-256 hash, password visibility toggle, dark UI CTA: Download Code, Try GUI Code : import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.security.MessageDigest; public class SecureLogin extends JFrame {     private JTextField usernameField;     private JPasswordField passwordField;     private JButton eyeButton;     private boolean passwordVisible = false;     public SecureLogin() {         setTitle("๐Ÿ” Secure Login – FuzzuTech");         setSize(400, 300);         setLocationRelativeTo(null);         setDefaultCloseOperation(EXIT_ON_CLOSE);         setLayout(null);         // ๐Ÿ–ค Modern Dark Theme Colors ...

Python IP Tracker App with GUI | Track IP Location Real-Time! (Working Project)

Image
Python IP Tracker App ๐Ÿ”ฅ   Location, ISP, Country, City — sab real-time milta hai! Ab tum bhi bana sakte ho yeh amazing GUI app – full source code available hai ๐Ÿ‘‡   Check the video & start building your own!    Demo : Click Video ๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡ Code : import tkinter as tk from tkinter import messagebox, scrolledtext import requests def track_ip(ip):     try:         url = f"http://ip-api.com/json/{ip}"         response = requests.get(url)         data = response.json()         if data['status'] == 'success':             result = (                 f"IP: {data['query']}\n"                 f"Country: {data['country']} ({data['countryCode']})\n"                 f"Region: {data['regionName']} ({data['region']})\n"   ...