百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
F

firedrill

> 编程语言
开源

firedrill 是一个恶意软件模拟工具,用于评估您的安全控制措施

197 stars0 点赞0 次浏览
访问官网GitHub

工具介绍

firedrill 是一个恶意软件模拟工具,用于评估您的安全控制措施

firedrill: A malware simulation harness

TL;DR: firedrill is an open-source library from FourCore Labs to build malware simulations easily. We have built a set of four different attack simulations for you to use and build on top of: Ransomware Simulation, Discovery Simulation, a UAC Bypass and a Persistence Simulation.

Organizations invest a whole lot in their security controls and tooling for the security teams to be efficient. They might put in 10s of man-hours tuning a single security control to their needs building out detection rules, identifying best practice configuration and setting up automation. However, the task shouldn't end right here, it is crucial to test the effectiveness of these security systems against attackers. Usually, this is done with pentesting and red teaming activities done either in-house or by external teams. This results in immense value for the organization as its build confidence in security controls against in the event of a real attack.

Read more about firedrill on our blog.

Ransomware Simulation

The ransomware simulations consists of typical behaviour of a ransomware.

Mock Ransomware

This includes, in this order:

  • Encryption of files on the filesystem (only test files dropped by the binary ).
  • Dropping a ransom note on the desktop.
  • Changing the system wallapaper through registry keys (and restoring it after some time).

Sandbox Analysis

Sandbox
Hybrid-Analysis
Intezer Analyze

System Ransomware

This includes, in this order:

  • Encryption of user files on the filesystem (selects 10 files each from the User Desktop and Downloads folder).
  • Dropping a ransom note on the desktop.
  • Changing the system wallapaper through registry keys (and restoring it after some time).

Sandbox Analysis

Sandbox
Hybrid-Analysis
Virus Total

Discovery Simulation

The discovery simulation consists of simulation of a malware executing three techniques from the Discovery tactic in MITRE ATT&CK, performing reconnaisance of system information which is used for further exploiting the system:

This includes, in this order:

  • Discovering the running processes on the system.
  • Discovering the peripherals present on the system.
  • Discovering the softwares installed on the system with their respective versions.

Sandbox Analysis

Sandbox
Hybrid-Analysis
Intezer Analyze

UAC Bypass Simulation

The UAC Bypass simulation consists of malware using the fodhelper.exe utility available from Windows 10 to achieve local privilege escalation by creating a registry structure to execute arbitrary commands with adminstrator privileges:

This includes, in this order:

  • Create a new registry structure in HKCU:\Software\Classes\ms-settings\ and start notepad.exe with admin privileges bypassing UAC.

Sandbox Analysis

Sandbox
Hybrid-Analysis
Intezer Analyze

Registry Run Key Persistence Simulation

This is a simulation of a persistence techniques which use registry Run keys to achieve persistence for arbitrary payloads. These keys include: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run, EY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce, HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunServices, HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce.

This includes, in this order:

  • Add a value in the registry key at HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run to execute a sample payload embedded in the binary.
  • Delete the value from HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run to bring back it to it's original state for a safe simulation.
Sandbox
Hybrid-Analysis
Intezer Analyze

Usage

  • Requires Go 1.17+, GNU make.

Windows

Mock Ransomware Simulation

$ make mockransomware
$ mockransomware.exe

System Ransomware Simulation

$ make ransomware
$ ransomware.exe

Discovery Simulation

$ make discovery
$ discovery.exe

UAC Bypass Simulation

$ make uac_bypass
$ uac_bypass.exe

Registry Run Key Simulation

$ make registry_run
$ runkeyregistry.exe

Linux/bash

$ GOOS=linux make ransomware # and so on

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

Go

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月18日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言