Posts

How to hack Facebook & Instagram accounts with Hidden Eye.

Image
Introduction: Hidden Eye is an all in one tool that can be used to perform a variety of online attacks on user accounts. It’s well loaded, therefore it can be used as keylogger (keystroke logging), phishing tool, information collector, social engineering tool, etc. NOTE :-USE THIS TOOL FOR EDUCATIONAL PURPOSE ONLY. Hidden Eye: Advanced Phishing Tool  As a modern phishing tool, Hidden Eye is very good at what it does. The perfect combination of all its functional components gives it an upper hand when attacking accounts. By using brute force attacks it can effectively access the user’s personal information. Hidden Eye can easily crack user passwords and can also collect other personal data belonging to the victim. Depending on the attack vector selected you can easily hack user accounts such as Facebook, Twitter, Instagram, Snapchat and many others. It can be used to carry out phishing on 30+ pages. The tool can also run on android devices through the Termux app.

How to find WiFi Password?

Image
Save this code with " wifi.py " name then run this you will see all the list of wifi password. import subprocess data = subprocess.check_output(['netsh', 'wlan','show', 'profiles']).decode('utf-8', errors="backslashreplace").split('\n') profiles = [i.split(":")[1][1:-1] for i in data if "All User Profile" in i] for i in profiles:    try:        results = subprocess.check_output(['netsh','wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8', errors="backslashreplace").split("\n")        results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]        try:          print ("{:<30}| {:<}".format(i, results[0]))        except IndexError:          print ("{:<30}| {:<}".format(i, ""))    except subprocess.CalledProcessError:          print