Last active
March 9, 2023 08:54
-
-
Save MohitDabas/a3ed45e6f6362a09f749eac11602cce4 to your computer and use it in GitHub Desktop.
Finding Macosx wifi password through python api (Requires root privilege)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import contextlib | |
import ctypes | |
import struct | |
from ctypes import c_void_p, c_uint16, c_uint32, c_int32, c_char_p, POINTER | |
from keyring.py27compat import string_types, add_metaclass | |
sec_keychain_ref = sec_keychain_item_ref = c_void_p | |
OS_status = c_int32 | |
class error: | |
item_not_found = -25300 | |
fw = '/System/Library/Frameworks/{name}.framework/Versions/A/{name}'.format | |
_sec = ctypes.CDLL(fw(name='Security')) | |
_core = ctypes.CDLL(fw(name='CoreServices')) | |
SecKeychainOpen = _sec.SecKeychainOpen | |
SecKeychainOpen.argtypes = ( | |
c_char_p, | |
POINTER(sec_keychain_ref), | |
) | |
SecKeychainOpen.restype = OS_status | |
SecKeychainCopyDefault = _sec.SecKeychainCopyDefault | |
SecKeychainCopyDefault.argtypes = POINTER(sec_keychain_ref), | |
SecKeychainCopyDefault.restype = OS_status | |
class Error(Exception): | |
@classmethod | |
def raise_for_status(cls, status, msg): | |
if status == 0: | |
return | |
raise cls(status, msg) | |
class NotFound(Error): | |
@classmethod | |
def raise_for_status(cls, status, msg): | |
if status == error.item_not_found: | |
raise cls(status, msg) | |
Error.raise_for_status(status, msg) | |
@contextlib.contextmanager | |
def open(name): | |
ref = sec_keychain_ref() | |
if name is None: | |
status = SecKeychainCopyDefault(ref) | |
msg = "Unable to open default keychain" | |
else: | |
status = SecKeychainOpen(name.encode('utf-8'), ref) | |
msg = "Unable to open keychain {name}".format(**locals()) | |
Error.raise_for_status(status, msg) | |
try: | |
yield ref | |
finally: | |
_core.CFRelease(ref) | |
SecKeychainFindGenericPassword = _sec.SecKeychainFindGenericPassword | |
SecKeychainFindGenericPassword.argtypes = ( | |
sec_keychain_ref, | |
c_uint32, | |
c_char_p, | |
c_uint32, | |
c_char_p, | |
POINTER(c_uint32), # passwordLength | |
POINTER(c_void_p), # passwordData | |
POINTER(sec_keychain_item_ref), # itemRef | |
) | |
SecKeychainFindGenericPassword.restype = OS_status | |
def find_generic_password(): | |
kc_name, service, username='/Library/Keychains/System.keychain','AirPort','<wifi-ssid>' | |
username = username.encode('utf-8') | |
service = service.encode('utf-8') | |
with open(kc_name) as keychain: | |
length = c_uint32() | |
data = c_void_p() | |
status = SecKeychainFindGenericPassword( | |
keychain, | |
len(service), | |
service, | |
len(username), | |
username, | |
length, | |
data, | |
None, | |
) | |
msg = "Can't fetch password from system" | |
NotFound.raise_for_status(status, msg) | |
password = ctypes.create_string_buffer(length.value) | |
ctypes.memmove(password, data.value, length.value) | |
#SecKeychainItemFreeContent(None, data) | |
print (password.raw.decode('utf-8')) | |
find_generic_password() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment