[TuT] BSOD Triggering Program - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: [TuT] BSOD Triggering Program (/showthread.php?tid=20042) |
[TuT] BSOD Triggering Program - Black Ghost - 06-29-2011 1. Make a new application. 2. Place a button on the form. 3. Put this code into the button: Code: For Each I In Process.GetProcesses Run it and press the button, you will get a nice BSOD RE: [TuT] BSOD Triggering Program - AceInfinity - 07-03-2011 Code: If Not I.ProcessName = Application.ExecutablePath.Split("\")(Application.ExecutablePath.Split("\").Length - 1).Split(".")(0) Then you didn't need all that extra typing lol. This could have been used as well: Code: Path.GetFileName(Application.ExecutablePath) Code: IO.Path.GetFileName(Application.ExecutablePath) Or you could have just split it at the last index of "\" instead, also it's only accurate for form applications. But it wouldn't work for a module or a service. But this is only accurate for windows form applications (executables), and it wouldn't be very good to use for a service or a module. Use this instead of the code above: Code: Dim AppProcess As String = Process.GetCurrentProcess.MainModule.FileName RE: [TuT] BSOD Triggering Program - Resistance - 07-03-2011 (07-03-2011, 03:30 AM)Ace Wrote: LOL... So what is it doing technically?... Explain please Ace RE: [TuT] BSOD Triggering Program - fuck_prohibition - 07-03-2011 (07-03-2011, 01:48 PM)Resistance Wrote: LOL... So what is it doing technically?... Explain please Ace It kills every process other than the one that is currently working. RE: [TuT] BSOD Triggering Program - Resistance - 07-03-2011 (07-03-2011, 04:59 PM)cody8295 Wrote: It kills every process other than the one that is currently working. That is an unwise decision to make! It needs administrator privileges to function, no? RE: [TuT] BSOD Triggering Program - fuck_prohibition - 07-03-2011 (07-03-2011, 05:02 PM)Resistance Wrote: That is an unwise decision to make! It needs administrator privileges to function, no? Only one way to find out. RE: [TuT] BSOD Triggering Program - AceInfinity - 07-03-2011 (07-03-2011, 05:02 PM)Resistance Wrote: That is an unwise decision to make! It needs administrator privileges to function, no? I doubt that it would cause a BSOD either, as you typically can't even delete the important processes anyway even with admin privilleges though. And some can't be deleted because they are in use, and will start back up upon killing it's process. (07-03-2011, 01:48 PM)Resistance Wrote: LOL... So what is it doing technically?... Explain please Ace You should have been able to figure that out. The first 3 are the same, only the last is the shortest, and the best method is the last one, as it doesn't just look for a filepath to an executable form. Not all services are executables in forms RE: [TuT] BSOD Triggering Program - t0fxREAL - 07-04-2011 real bsod try this : Code: 'Release Date : 10/5/2010 RE: [TuT] BSOD Triggering Program - AceInfinity - 07-04-2011 (07-04-2011, 06:39 PM)t0fxREAL Wrote: real bsod try this : 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. RE: [TuT] BSOD Triggering Program - t0fxREAL - 07-04-2011 (07-04-2011, 06:54 PM)Ace Wrote:(07-04-2011, 06:39 PM)t0fxREAL Wrote: real bsod try this : I know that, it's just a c/p with credits, search my codes u'll never find useless declarations. |