伍佰目录 短网址
  当前位置:海洋目录网 » 站长资讯 » 互联网资讯 » 文章详细 订阅RssFeed

Python说“全能钥匙”弗成见暗码,立马写了个剧本解决了

来源:本站原创 浏览:159次 时间:2021-08-14

安徽p2p,逼迫游客消费1万,lip smacker

学习python练手,剧本方便获取电脑里存储过的所有WiFi暗码,其原理是自动化"netsh wlan show profiles"的查询过程,后通过正则匹配获取

私信小编01即可获取python学习资源# subprocess 模块允许我们启动一个新历程,并毗邻到它们的输入/输出/错误管道,从而获取返回值import subprocessimport re # 用于判断OS的语言import localeloc_lang = locale.getdefaultlocale()# print(loc_lang[0]) # 代码中用到的正则匹配模式字符串,提取出来以便分歧语言体系使用,默认支持中文英文,其他语言必要变动匹配语句if loc_lang[0] == "zh_CN": re_pattern = ["所有用户配置文件 : (.*)\r", "平安密钥 : 不存在", "关键数据 : (.*)\r"]else: re_pattern = ["All User Profile : (.*)\r", "Security key : Absent", "Key Content : (.*)\r"] # 如果 capture_output 设为 true,stdout 和 stderr 将会被捕捉cmd_output = subprocess.run(["netsh", "wlan", "show", "profiles"], capture_output=True).stdout.decode('gbk')# print(cmd_output)wifi_names = (re.findall(re_pattern[0], cmd_output))# print(wifi_names)wifi_list = []if len(wifi_names) != 0: for name in wifi_names: # 每一个wifi的信息存储在一个字典里 wifi_profile = {} profile_info = subprocess.run(["netsh", "wlan", "show", "profiles", name], capture_output=True).stdout.decode('gbk') # print(profile_info) # 判断wifi暗码是否存储在windows较量机里,不存在则忽略 if re.search(re_pattern[1], profile_info): continue else: wifi_profile["ssid"] = name # 暗码存在时,加上下令参数“key=clear”表现wifi暗码 profile_info_pass = subprocess.run(["netsh", "wlan", "show", "profiles", name, "key=clear"], capture_output=True).stdout.decode('gbk') password = re.search(re_pattern[2], profile_info_pass) # print(password) if not password: wifi_profile["password"] = None else: wifi_profile["password"] = password[1] wifi_list.append(wifi_profile) for i in range(len(wifi_list)): print(wifi_list[i])

效果

本文地址:http://www.wbwb.net/bianchengyuyan/229222.html 转载请注明出处!

  推荐站点

  • At-lib分类目录At-lib分类目录

    At-lib网站分类目录汇集全国所有高质量网站,是中国权威的中文网站分类目录,给站长提供免费网址目录提交收录和推荐最新最全的优秀网站大全是名站导航之家

    www.at-lib.cn
  • 中国链接目录中国链接目录

    中国链接目录简称链接目录,是收录优秀网站和淘宝网店的网站分类目录,为您提供优质的网址导航服务,也是网店进行收录推广,站长免费推广网站、加快百度收录、增加友情链接和网站外链的平台。

    www.cnlink.org
  • 35目录网35目录网

    35目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向35目录推荐、提交优秀网站。

    www.35mulu.com
  • 就要爱网站目录就要爱网站目录

    就要爱网站目录,按主题和类别列出网站。所有提交的网站都经过人工审查,确保质量和无垃圾邮件的结果。

    www.912219.com
  • 伍佰目录伍佰目录

    伍佰网站目录免费收录各类优秀网站,全力打造互动式网站目录,提供网站分类目录检索,关键字搜索功能。欢迎您向伍佰目录推荐、提交优秀网站。

    www.wbwb.net