随笔分类 -  安全测试

Ubuntu 24 php8.1搭建Nginx SQLi-Labs靶场
摘要:步骤1:安装依赖环境 # 更新系统 sudo apt update && sudo apt upgrade -y # 安装 PHP 8.1 及扩展 sudo apt install php8.1 php8.1-fpm php8.1-mysql php8.1-curl php8.1-gd php8.1 阅读全文
posted @ 2025-04-20 01:21 Ad1ey 阅读(173) 评论(0) 推荐(0)
在Ubuntu 24上使用Nginx搭建dvwa靶场并指定82端口的步骤如下
摘要:步骤1:下载DVWA # 进入Web目录 sudo mkdir -p /var/www/dvwa cd /var/www/dvwa # 下载DVWA(使用Git) sudo git clone https://github.com/digininja/DVWA.git . # 或手动下载(若Git不 阅读全文
posted @ 2025-04-19 22:46 Ad1ey 阅读(305) 评论(0) 推荐(0)
在Ubuntu 24上使用Nginx搭建Pikachu靶场并指定81端口的步骤如下
摘要:步骤1:安装必要依赖 # 更新系统 sudo apt update && sudo apt upgrade -y # 安装Nginx(如果尚未安装) sudo apt install nginx -y # 安装PHP及依赖(假设Pikachu需要PHP 7.4+) sudo apt install 阅读全文
posted @ 2025-04-19 22:18 Ad1ey 阅读(293) 评论(0) 推荐(0)
vmware开启虚拟化教程
摘要:关闭 以管理员身份运行CMD bcdedit /set hypervisorlaunchtype off 进入 组策略方法=>计算机配置=>管理模板=>系统=>设备防护=>启用基于虚拟化的安全性=>禁用=>重启电脑 关闭 阅读全文
posted @ 2025-01-17 22:35 Ad1ey 阅读(89) 评论(0) 推荐(0)
ubantu 20.04 搭建 Vulhub 环境
摘要:sudo apt install curl #安装curl模块 curl -s https://get.docker.com/ | sh #安装docker docker -v sudo apt install python3-pip #安装pip sudo curl -L "https://git 阅读全文
posted @ 2025-01-12 01:43 Ad1ey 阅读(54) 评论(0) 推荐(0)
00截断汇总
摘要:get型00截断 条件: upload-labs第十二关 把1.php一句话木马改成1.jpg post型00截断 upload-labs第十三关 阅读全文
posted @ 2025-01-07 22:02 Ad1ey 阅读(20) 评论(0) 推荐(0)
文件上传漏洞汇总
摘要:大纲: 一、::$DATA漏洞(仅限Win) 在window的时候如果文件名+"::$DATA"会把::$DATA之后的数据当 成文件流处理,不会检测后缀名,且保持::$DATA之前的文件名,它的 目的就是不检查后缀名 例如:"phpinfo.php::$DATA" Windows会自动去掉末尾的: 阅读全文
posted @ 2025-01-01 22:04 Ad1ey 阅读(57) 评论(0) 推荐(0)
kali安装ngrok和seeker
摘要:// 移动并重命名ngrok(可选) sudo mv ngrok /usr/bin/ngrok // 给予执行权限 sudo chmod +x /usr/bin/ngrok // 认证令牌 ngrok authtoken <你的ngrok认证令牌> //seeker安装 git clone http 阅读全文
posted @ 2024-12-25 21:56 Ad1ey 阅读(0) 评论(0) 推荐(0)
win10去掉任务栏防火墙图标
摘要:通过注册表编辑器 按下Win + R键,打开运行窗口,输入“regedit”并点击“确定”打开注册表编辑器。 在注册表编辑器中,依次展开“HKEY_CURRENT_USER”、“Software”、“Microsoft”、“Windows”、“CurrentVersion”、“Policies”、“ 阅读全文
posted @ 2024-12-04 22:35 Ad1ey 阅读(133) 评论(0) 推荐(0)
M芯片parallels desktop安装arm win10“管理员已阻止你运行此应用mmc.exe”解决方法
摘要:具体解决方法: 1、由于MMC.exe无法运行,可能会遇到在运行中输入“gpedit.msc”命令无法打开本地组策略编辑器,所以我们鼠标右键点击“开始菜单”,点击“windows powershell(管理员)”,或者是开始→window系统→命令提示符→右击选择以管理员身份运行,在windows 阅读全文
posted @ 2024-12-04 22:13 Ad1ey 阅读(1498) 评论(0) 推荐(0)
docker 配置daemon.json
摘要:引用:https://blog.csdn.net/Stromboli/article/details/142486565 sudo tee /etc/docker/daemon.json <<EOF { "registry-mirrors": [ "http://hub-mirror.c.163.c 阅读全文
posted @ 2024-11-27 23:52 Ad1ey 阅读(683) 评论(0) 推荐(0)
BurpSuite安装captcha-killer插件
摘要:1.本机已经安装python3.8或者更高版本,使用命令进行更新pip和安装环境模块 python3 -m pip install --upgrade pip pip3 install ddddocr aiohttp -i https://pypi.tuna.tsinghua.edu.cn/simp 阅读全文
posted @ 2024-11-24 23:18 Ad1ey 阅读(505) 评论(0) 推荐(0)
BurpSuite设置代理
摘要:下载插件 阅读全文
posted @ 2024-11-19 21:05 Ad1ey 阅读(15) 评论(0) 推荐(0)
M芯片parallels desktop安装Ubuntu docker
摘要:取自于官网教程:https://docs.vultr.com/how-to-install-docker-on-ubuntu-24-04 安装所有必需的依赖包。 sudo apt install apt-transport-https ca-certificates curl software-pr 阅读全文
posted @ 2024-11-09 01:02 Ad1ey 阅读(186) 评论(0) 推荐(0)