whatisgithub

What is silentbutdeadly?

ridter/silentbutdeadly — explained in plain English

Analysis updated 2026-08-04 · repo last pushed 2025-11-03

1Audience · ops devopsComplexity · 3/5QuietSetup · moderate

In one sentence

A Windows tool that temporarily blocks antivirus and security software from accessing the internet so researchers can test how those tools behave when cut off from cloud servers.

Mindmap

mindmap
  root((repo))
    What it does
      Blocks security tools network
      Finds AV processes
      Disables related services
    How it works
      Uses Windows Filtering Platform
      No custom drivers needed
      Requires admin privileges
    Use cases
      Authorized penetration testing
      Malware analysis in labs
      Testing AV cloud dependence
    Limitations
      IPv4 connections only
      Some tools may resist
      Windows Firewall required
    Supported targets
      SentinelOne components
      Windows Defender components
      Extensible target list

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Temporarily isolate antivirus software from its cloud servers during authorized penetration tests.

USE CASE 2

Study malware behavior in a lab without security tools uploading telemetry or fetching cloud threat intel.

USE CASE 3

Verify a security product can be network-isolated before running a simulated attack exercise.

USE CASE 4

Test how endpoint detection tools respond when denied internet connectivity.

What is it built with?

WindowsWindows Filtering PlatformC++Win32 API

How does it compare?

ridter/silentbutdeadly0xallam/posthog0xallam/search-engine
Stars111
LanguagePythonC++
Last pushed2025-11-032026-03-262023-08-23
MaintenanceQuietMaintainedDormant
Setup difficultymoderatemoderatehard
Complexity3/53/53/5
Audienceops devopspm founderdeveloper

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · moderate Time to first run · 30min

Requires Windows with Firewall enabled, administrator privileges, and compiling from source.

No license information is provided, so default copyright restrictions apply and usage rights are unclear.

So what is it?

SilentButDeadly is a Windows tool that cuts off antivirus and EDR (endpoint detection and response) software from the internet. It's designed for security researchers and red team operators who need to test how security tools behave when they can't communicate with their cloud servers. Rather than killing the security software outright, it quietly blocks their network traffic. The tool works by scanning your running processes for known security products like SentinelOne and Windows Defender. Once it finds them, it uses a built-in Windows feature called the Windows Filtering Platform to create rules that block all incoming and outgoing network connections for those specific programs. It also attempts to stop and disable the associated background services so they can't restart on their own. Everything is temporary by default, when the program exits, the network blocks are removed. The primary users are security professionals conducting authorized penetration tests or analyzing malware in controlled lab environments. For example, a researcher studying how a particular piece of malware behaves might want to temporarily prevent their security software from uploading telemetry or fetching cloud-based threat intelligence, without fully uninstalling the protection. A red team operator might use it to verify whether a security product can be isolated before beginning a simulated attack exercise. A few things stand out about how it's built. It relies entirely on legitimate Windows APIs and doesn't load any custom drivers or touch the kernel, which makes it relatively lightweight. The tradeoff is that it only works on IPv4 connections, and some security products with their own low-level network drivers might not be fully affected. It also requires administrator privileges and only works if Windows Firewall is enabled. The supported target list currently includes SentinelOne and Windows Defender components, but the code is structured so additional products can be added straightforwardly.

Copy-paste prompts

Prompt 1
Write a Windows batch script that checks whether Windows Firewall is enabled and elevates to administrator privileges before running an executable, similar to how SilentButDeadly requires both conditions.
Prompt 2
Create a Python tool that scans running Windows processes and matches them against a configurable list of known security product names like SentinelOne and Windows Defender components.
Prompt 3
Explain how the Windows Filtering Platform can be used to block all incoming and outgoing IPv4 network traffic for specific process IDs without loading a custom kernel driver.
Prompt 4
Design a configurable JSON schema for a tool that defines target security products by process name and associated Windows service names, so new products can be added easily like SilentButDeadly's extensible target list.

Frequently asked questions

What is silentbutdeadly?

A Windows tool that temporarily blocks antivirus and security software from accessing the internet so researchers can test how those tools behave when cut off from cloud servers.

Is silentbutdeadly actively maintained?

Quiet — no commits in 6-12 months (last push 2025-11-03).

What license does silentbutdeadly use?

No license information is provided, so default copyright restrictions apply and usage rights are unclear.

How hard is silentbutdeadly to set up?

Setup difficulty is rated moderate, with roughly 30min to a first successful run.

Who is silentbutdeadly for?

Mainly ops devops.

Open on GitHub → Ask about another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.