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