摘要: 阅读全文
posted @ 2024-01-14 22:46 imawuya 阅读(21) 评论(0) 推荐(0)
摘要: 简介 dirsearch是一个基于python的命令行工具,用于暴力扫描页面结构,包括网页中的目录和文件。 https://github.com/maurosoria/dirsearch 用python编写的Dirsearch是一个命令行网站目录扫描程序。它具有许多功能: 多线程,使其比任何其他站点 阅读全文
posted @ 2024-01-13 12:17 imawuya 阅读(886) 评论(0) 推荐(0)
摘要: 安装docker 如果有旧版本的docker就需要先卸载: sudo apt-get remove docker docker-ce docker.io containerd runc 更新系统里的所有软件: sudo apt-get update sudo apt-get install \ ap 阅读全文
posted @ 2023-12-31 19:40 imawuya 阅读(45) 评论(0) 推荐(0)
摘要: 记一次windows11安装gitbook 首先,需要安装node,我这边安装的是这个版本:https://nodejs.org/dist/v10.21.0/node-v10.21.0-x64.msi。 安装好后打开cmd,使用version命令查询是否安装成功: C:\Users\imawu>no 阅读全文
posted @ 2023-12-31 01:11 imawuya 阅读(113) 评论(0) 推荐(0)
摘要: 无法定位软件包错误基本都与镜像有关, 点击查看代码 vi /etc/apt/sources.list 需要将原来的注释掉,然后添加新源,以下为国内源列表: 点击查看代码 deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free co 阅读全文
posted @ 2023-12-20 03:55 imawuya 阅读(762) 评论(0) 推荐(0)
摘要: #Python 版本是 3.X python -m http.server #Python 版本是 2.X python -m SimpleHTTPServer 阅读全文
posted @ 2023-09-12 11:52 imawuya 阅读(29) 评论(0) 推荐(0)
摘要: 展开查看代码 ``` import threading import socket #接受信息函数 def rec(upd): while True: #接收消息,最多为1024字节 data = upd.recvfrom(1024) #data为一个元组,info为信息内容,frm为发送者ip和端 阅读全文
posted @ 2023-07-20 21:09 imawuya 阅读(13) 评论(0) 推荐(0)
@keyframes spin3D{from{transform:rotate3d(0.5,0.5,0.5,360deg)}to{transform:rotate3d(0deg)}}#loading{height:100%;background-color:#1d2630;display:flex;justify-content:center;align-items:center;position:fixed;top:0;left:0;right:0;overflow:hidden;z-index:99999999}.spinner-box{width:300px;height:300px;display:flex;justify-content:center;align-items:center;background-color:transparent}.leo{position:absolute;display:flex;justify-content:center;align-items:center;border-radius:50%}.blue-orbit{width:165px;height:165px;border:1px solid #91daffa5;animation:spin3D 3s linear .2s infinite}.green-orbit{width:120px;height:120px;border:1px solid #91ffbfa5;animation:spin3D 2s linear 0s infinite}.red-orbit{width:90px;height:90px;border:1px solid #ffca91a5;animation:spin3D 1s linear 0s infinite}.white-orbit{width:60px;height:60px;border:2px solid #fff;animation:spin3D 10s linear 0s infinite}.w1{transform:rotate3D(1,1,1,90deg)}.w2{transform:rotate3D(1,2,0.5,90deg)}.w3{transform:rotate3D(0.5,1,2,90deg)}