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

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

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

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

工具目录

分类

查看所有分类
Loading categories
VeeamDumper-BOF — 针对 Veeam Backup and Replication 和 Veeam One 的凭据提取 BOF | Kitploit
工具/GitHubGitHub/mwr-cybersec/veeamdumper-bof
密码攻击后渗透利用渗透测试红队Payload 开发
GitHubmwr-cybersec/veeamdumper-bof

VeeamDumper-BOF

针对 Veeam Backup and Replication 和 Veeam One 的凭据提取 BOF

查看仓库
79101个月前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

Veeam Dumper BOF

一个用于 Veeam Backup and Replication 和 Veeam One 的凭据提取 BOF,由 @MWRCyberSec 的 Stephen Munro 和 Logan Kroeger 编写。该 BOF 需要在 Veeam One 或 Veeam Backup and Replication 服务器的 Admin beacon 中执行,并支持 Cobalt Strike 和 Outflank C2。

root@kitploit:~
tldr;
The BOF uses sqlcmd.exe/psql.exe to extract encrypted credential blobs from the database, grabs the salt from regisry and uses DPAPI to decrypt and print them.

我不是熟练的 C 开发者,因此,如果你担心 beacon 会崩溃,我强烈建议生成第二个 beacon 来运行此 BOF 作为预防措施。我已针对 Veeam One 和 Veeam Backup and Replication(PSQL 和 MSSQL)进行了测试,全部都能正常工作。

免责声明

本项目的作者和贡献者不对任何非法使用该工具的行为负责。该工具仅供教育和授权安全测试使用。用户有责任确保合法使用。

使用方法

root@kitploit:~
Dump credentials from Veeam. Supports PSQL and MSSQL!

Use: veeam-dumper [db type] [optional args]

	 db type (Required):	mssql, psql, auto 
	 --dbname (Optional):	if blank will try pull from registry. 
	 --exepath (Optional):	Path to sqlcmd.exe/psql.exe. If not specified will search $PATH and common locations depending on the DB type 
	 --debug (Optional):	Enables debug output
	 --veeamone (Optional):	Run VeeamOne mode

Examples:
	 veeam-dumper auto
	 veeam-dumper psql --dbname VeeamBackup2016 --exepath "C:\Program Files\pssql.exe" --debug
	 veeam-dumper mssql --debug --veeamone

Example Image

功能特性

该 BOF 可以完成以下操作:

  • 支持 Veeam Backup and Replication 和 Veeam One 的 PSQL 与 MSSQL
  • 支持 Outflank C2 (.s1.py) 和 Cobalt Strike (.cna)
  • 具备完整的自动模式
  • 在常见位置搜索所需的 sqlcmd.exe/psql.exe,或手动指定
  • 自动从注册表中获取 Veeam Backup and Replication 和 VeeamOne 的数据库名称和盐值
  • 通过查询 Veeam 数据库中的作业,列出凭据的使用位置

从源代码编译

root@kitploit:~
i686-w64-mingw32-gcc -c cs_veeam_dumper.c -o cs_veeam_dumper.x86.o
x86_64-w64-mingw32-gcc -c cs_veeam_dumper.c -o cs_veeam_dumper.x64.o

资源

Veeam Dumper .NET Implementation

下载工具