Want to know who’s secretly connected to your Wi-Fi? 🔍
In this video, I’ll show you how to track every device on your Wi-Fi network using just one simple Python script! 🚀
No advanced skills needed — this is beginner-friendly, super easy, and works on Kali Linux or any system with Python installed.
✨ What you’ll learn in this video:
✔️ How to use Python to scan your local network
✔️ Detect every connected device (PC, phone, tablet, etc.)
✔️ Simple but powerful ethical hacking techniques
⚠️ This tutorial is for EDUCATIONAL PURPOSES ONLY. Always test on your own Wi-Fi or with permission.
📌 Stay connected with me:
🔹 Discord: https://discord.gg/rbCmYGg2rd
🔹 X (Twitter): https://x.com/MrHackerCharlie
If you enjoy these types of videos, don’t forget to LIKE 👍, COMMENT 💬, and SUBSCRIBE 🔔 for more awesome ethical hacking & cybersecurity content!
Code:-
# Simple Wi-Fi Device Tracker in Python (Educational Only)
import scapy.all as scapy
def scan(network):
ans, _ = scapy.arping(network, verbose=0)
for s, r in ans:
print(f”{r.psrc}tt{r.hwsrc}”)
print(“IP AddressttMAC Address”)
print(“———————————“)
scan(“192.168.1.1/24”) # Change this to your network range
———————————————————————————————————————
#python #mrhackercharlie #kalilinux #devicetracker #trackdevices #location_track #cybersecurity #ethicalhacking