What's new

Welcome to CyberDark

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Pythonla WiFi Şifrəsi Qırma

Zsocient

Zsocient

VIP SILVER
Joined
Aug 28, 2023
Messages
33
Reaction score
41
Points
0
Bu Kodları Visual Studio Code Terminalında Başlataraq WiFi Şifrələrini Qıra Bilərsiniz

# importing subprocess
import subprocess

# getting meta data
meta_data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])

# decoding meta data
data = meta_data.decode('utf-8', errors ="backslashreplace")

# splitting data by line by line
data = data.split('\n')

# creating a list of profiles
profiles = []

# traverse the data
for i in data:

# find "All User Profile" in each item
if "All User Profile" in i :

# if found
# split the item
i = i.split(":")

# item at index 1 will be the wifi name
i = i[1]

# formatting the name
# first and last character is use less
i = i[1:-1]

# appending the wifi name in the list
profiles.append(i)


# printing heading
print("{:<30}| {:<}".format("Wi-Fi Name", "Password"))
print("----------------------------------------------")

# traversing the profiles
for i in profiles:

# try catch block begins
# try block
try:
# getting meta data with password using wifi name
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key = clear'])

# decoding and splitting data line by line
results = results.decode('utf-8', errors ="backslashreplace")
results = results.split('\n')

# finding password from the result list
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]

# if there is password it will print the pass word
try:
print("{:<30}| {:<}".format(i, results[0]))

# else it will print blank in front of pass word
except IndexError:
print("{:<30}| {:<}".format(i, ""))



# called when this process get failed
except subprocess.CalledProcessError:
print("Encoding Error Occurred")
2023121915593

HOŞ İSTİFADELER -- ZSOCİENT
 
N

nicat

User
BAN
Joined
Sep 9, 2023
Messages
29
Reaction score
3
Points
0
*** Hidden text: cannot be quoted. ***
Bu Kodları Visual Studio Code Terminalında Başlataraq WiFi Şifrələrini Qıra Bilərsiniz


# importing subprocess
import subprocess

# getting meta data
meta_data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])

# decoding meta data
data = meta_data.decode('utf-8', errors ="backslashreplace")

# splitting data by line by line
data = data.split('\n')

# creating a list of profiles
profiles = []

# traverse the data
for i in data:

# find "All User Profile" in each item
if "All User Profile" in i :

# if found
# split the item
i = i.split(":")

# item at index 1 will be the wifi name
i = i[1]

# formatting the name
# first and last character is use less
i = i[1:-1]

# appending the wifi name in the list
profiles.append(i)


# printing heading
print("{:<30}| {:<}".format("Wi-Fi Name", "Password"))
print("----------------------------------------------")

# traversing the profiles
for i in profiles:

# try catch block begins
# try block
try:
# getting meta data with password using wifi name
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key = clear'])

# decoding and splitting data line by line
results = results.decode('utf-8', errors ="backslashreplace")
results = results.split('\n')

# finding password from the result list
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]

# if there is password it will print the pass word
try:
print("{:<30}| {:<}".format(i, results[0]))

# else it will print blank in front of pass word
except IndexError:
print("{:<30}| {:<}".format(i, ""))



# called when this process get failed
except subprocess.CalledProcessError:
print("Encoding Error Occurred")
View attachment 139

HOŞ İSTİFADELER -- ZSOCİENT
 
Mirmuhammed

Mirmuhammed

User
Joined
Sep 17, 2023
Messages
17
Reaction score
0
Points
0
*** Hidden text: cannot be quoted. ***
Bu Kodları Visual Studio Code Terminalında Başlataraq WiFi Şifrələrini Qıra Bilərsiniz


# importing subprocess
import subprocess

# getting meta data
meta_data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])

# decoding meta data
data = meta_data.decode('utf-8', errors ="backslashreplace")

# splitting data by line by line
data = data.split('\n')

# creating a list of profiles
profiles = []

# traverse the data
for i in data:

# find "All User Profile" in each item
if "All User Profile" in i :

# if found
# split the item
i = i.split(":")

# item at index 1 will be the wifi name
i = i[1]

# formatting the name
# first and last character is use less
i = i[1:-1]

# appending the wifi name in the list
profiles.append(i)


# printing heading
print("{:<30}| {:<}".format("Wi-Fi Name", "Password"))
print("----------------------------------------------")

# traversing the profiles
for i in profiles:

# try catch block begins
# try block
try:
# getting meta data with password using wifi name
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key = clear'])

# decoding and splitting data line by line
results = results.decode('utf-8', errors ="backslashreplace")
results = results.split('\n')

# finding password from the result list
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]

# if there is password it will print the pass word
try:
print("{:<30}| {:<}".format(i, results[0]))

# else it will print blank in front of pass word
except IndexError:
print("{:<30}| {:<}".format(i, ""))



# called when this process get failed
except subprocess.CalledProcessError:
print("Encoding Error Occurred")
View attachment 139

HOŞ İSTİFADELER -- ZSOCİENT
kod xeta verir
 
V

victor

User
Joined
Jan 22, 2024
Messages
20
Reaction score
4
Points
0
*** Hidden text: cannot be quoted. ***
Bu Kodları Visual Studio Code Terminalında Başlataraq WiFi Şifrələrini Qıra Bilərsiniz


# importing subprocess
import subprocess

# getting meta data
meta_data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])

# decoding meta data
data = meta_data.decode('utf-8', errors ="backslashreplace")

# splitting data by line by line
data = data.split('\n')

# creating a list of profiles
profiles = []

# traverse the data
for i in data:

# find "All User Profile" in each item
if "All User Profile" in i :

# if found
# split the item
i = i.split(":")

# item at index 1 will be the wifi name
i = i[1]

# formatting the name
# first and last character is use less
i = i[1:-1]

# appending the wifi name in the list
profiles.append(i)


# printing heading
print("{:<30}| {:<}".format("Wi-Fi Name", "Password"))
print("----------------------------------------------")

# traversing the profiles
for i in profiles:

# try catch block begins
# try block
try:
# getting meta data with password using wifi name
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key = clear'])

# decoding and splitting data line by line
results = results.decode('utf-8', errors ="backslashreplace")
results = results.split('\n')

# finding password from the result list
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]

# if there is password it will print the pass word
try:
print("{:<30}| {:<}".format(i, results[0]))

# else it will print blank in front of pass word
except IndexError:
print("{:<30}| {:<}".format(i, ""))



# called when this process get failed
except subprocess.CalledProcessError:
print("Encoding Error Occurred")
View attachment 139

HOŞ İSTİFADELER -- ZSOCİENT
👍
 
Frozen

Frozen 

VIP GOLD
Joined
Feb 5, 2024
Messages
36
Reaction score
197
Points
0
*** Hidden text: cannot be quoted. ***
Bu Kodları Visual Studio Code Terminalında Başlataraq WiFi Şifrələrini Qıra Bilərsiniz


# importing subprocess
import subprocess

# getting meta data
meta_data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])

# decoding meta data
data = meta_data.decode('utf-8', errors ="backslashreplace")

# splitting data by line by line
data = data.split('\n')

# creating a list of profiles
profiles = []

# traverse the data
for i in data:

# find "All User Profile" in each item
if "All User Profile" in i :

# if found
# split the item
i = i.split(":")

# item at index 1 will be the wifi name
i = i[1]

# formatting the name
# first and last character is use less
i = i[1:-1]

# appending the wifi name in the list
profiles.append(i)


# printing heading
print("{:<30}| {:<}".format("Wi-Fi Name", "Password"))
print("----------------------------------------------")

# traversing the profiles
for i in profiles:

# try catch block begins
# try block
try:
# getting meta data with password using wifi name
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key = clear'])

# decoding and splitting data line by line
results = results.decode('utf-8', errors ="backslashreplace")
results = results.split('\n')

# finding password from the result list
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]

# if there is password it will print the pass word
try:
print("{:<30}| {:<}".format(i, results[0]))

# else it will print blank in front of pass word
except IndexError:
print("{:<30}| {:<}".format(i, ""))



# called when this process get failed
except subprocess.CalledProcessError:
print("Encoding Error Occurred")
View attachment 139

HOŞ İSTİFADELER -- ZSOCİENT
netsh show wlandiye bu.hecne qirmir
 
A

Ayxan

User
Joined
Mar 10, 2024
Messages
49
Reaction score
5
Points
0
*** Hidden text: cannot be quoted. ***
Bu Kodları Visual Studio Code Terminalında Başlataraq WiFi Şifrələrini Qıra Bilərsiniz


# importing subprocess
import subprocess

# getting meta data
meta_data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])

# decoding meta data
data = meta_data.decode('utf-8', errors ="backslashreplace")

# splitting data by line by line
data = data.split('\n')

# creating a list of profiles
profiles = []

# traverse the data
for i in data:

# find "All User Profile" in each item
if "All User Profile" in i :

# if found
# split the item
i = i.split(":")

# item at index 1 will be the wifi name
i = i[1]

# formatting the name
# first and last character is use less
i = i[1:-1]

# appending the wifi name in the list
profiles.append(i)


# printing heading
print("{:<30}| {:<}".format("Wi-Fi Name", "Password"))
print("----------------------------------------------")

# traversing the profiles
for i in profiles:

# try catch block begins
# try block
try:
# getting meta data with password using wifi name
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key = clear'])

# decoding and splitting data line by line
results = results.decode('utf-8', errors ="backslashreplace")
results = results.split('\n')

# finding password from the result list
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]

# if there is password it will print the pass word
try:
print("{:<30}| {:<}".format(i, results[0]))

# else it will print blank in front of pass word
except IndexError:
print("{:<30}| {:<}".format(i, ""))



# called when this process get failed
except subprocess.CalledProcessError:
print("Encoding Error Occurred")
View attachment 139

HOŞ İSTİFADELER -- ZSOCİENT
Əla
 
Top