• 大小: 0.57KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签: wifi  密码  python  

资源简介


资源截图

代码片段和文件信息

#coding:utf-8
import os
import re
import sys

a=os.popen(‘netsh wlan show profiles‘)
b=a.read()
c=re.findall(‘所有用户配置文件 : (.*?)\n    所有用户配置文件‘bre.S)
print(c)
for i in c:
    a=os.popen(‘netsh wlan show profiles ‘+i+‘ key=clear‘)
    

评论

共有 条评论