随笔分类 - Misc
软件安装、游戏下载、钓鱼技巧等奇怪操作?
摘要:conda create --name env_name python=3.10 安装pytorch:https://pytorch.org/get-started/locally/ conda install jupyter conda install -c huggingface transfo
阅读全文
摘要:Kali2023安装USB无线网卡驱动 环境:VMware17、Kali2023 USB无线网卡驱动型号:TP-LINK USB无线网卡 TL-WDN6200免驱版 AC1300双频无线USB网卡 修改VMware中的USB兼容性为USB3.1 将USB无线网卡连接到虚拟机 使用lsusb -tv命
阅读全文
摘要:BlackHat官网:https://www.blackhat.com/ 查看Black Hat历史文章: 选择会议: 选择主题: 或者可以Ctrl+F搜索具体的文章
阅读全文
摘要:使用如下python代码: import os dir = os.getcwd() #获取当前目录 subdirlist = os.listdir(dir) #获取当前目录下文件列表 total = 0 for subdir in subdirlist: path = os.path.join(di
阅读全文