Thread: Disable ctrl+alt+del

  1. #16
    Registered User
    Join Date
    Apr 2002
    Posts
    37
    Hey, my school's computer lab uses fortress.
    Show me a man who cannot bother to do little things, and I'll show you a man who cannot be trusted to do big things.

    -Bill Cosby

  2. #17
    [K]
    Guest

    who?

    Davros said, "Who Cares?"

    Because Win9x sucks! And we enjoy programming, not just playing games. I want to know!

    if you know...

  3. #18
    Evil Member
    Join Date
    Jan 2002
    Posts
    638
    There is only one s in fortres. Also, wanna know a million and one ways around it?

  4. #19
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212
    Originally posted by Imperito

    But it would be pretty useless if someone could just ctrl-alt-del out of it.
    You probably can't. Not on my school's network. They register it as a service so it is hidden in ctrl-alt-del.

    The way around it, make a new text document in your work area, rename it to "hello.html" or anything ending with .html

    open the file and edit the source to the following:

    Code:
    <HTML>
    <BODY>
    <IFRAME src="c:\">
    </IFRAME>
    </BODY>
    </HTML>
    yay! you're on the C drive. Now you just have to hunt down that program and delete it, then reboot. On our systems it is in C:\Program Files\RM and it is called "WindowGrabber.exe". I also made a program which removes the restrictions from the registry [so i can use the dos prompt and run commands] with some code I scooped up from this board.

    Systems with restrictions are the funnest things in the world.

  5. #20
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212
    oh and they have this new trojan-style program on our network which takes screenshots of what you are doing so they can see. to keep my emails from a certain girl out of their sight i am working on a program to figure out what port the program uses, and then another to block the port.

    It used to do a pop-up asking you what your name was, so it could associate you with your screenshots. You could make the client program crash by b/o'ing the text box with unicode characters *shrug*
    Last edited by Brian; 04-08-2002 at 06:20 PM.

  6. #21
    Registered User
    Join Date
    May 2002
    Posts
    2

    Hehe, I wonder.

    I also want to know how to make it so that they can't click Shutdown, can't press the reset or power button, can't unplug it, and can't leave the room. Any ideas?

  7. #22
    Registered User
    Join Date
    May 2002
    Posts
    132
    I also want to know how to make it so that they can't click Shutdown, can't press the reset or power button, can't unplug it, and can't leave the room. Any ideas?
    Programmer: I think you forgot; Power outtages can't affect the computer running and they can't trip the circuit breaker (although I guess if they can't leave the room they can't do this either unless the circuit breaker was in the same room).



    There is only a couple good uses to stopping ctrl+alt+del, one is for games like Ultima Online or EverQuest to stop the users from running outside programs to help them cheat their characters. Another is in security programs to stop users from completely shutting the security software down. Although, as some have posted, there are a million and one ways to get around these programs. Most of them anyways. There are a few out there that do provide better security, but there are always going to be loop holes for those who know how to look.

    As for stopping the ctrl+alt+del key combination, I will check it out and reply with whether or not I have found a way of doing it or not. It shouldn't be too difficult.

  8. #23
    Registered User
    Join Date
    Feb 2002
    Posts
    57
    According to NeHe's tutorials, this stops a screensaver:
    Code:
    case WM_SYSCOMMAND:
    
    case WM_SCREENSAVER: //i think that, or maybe SCREENSAVERSTART
    
    return 0; //this stops it from starting
    
    break; // end syscommand..
    maybe you could make CTRL + ALT + DELETE Do something different.. or just check and see if they were pressed and then break;. That way nothing would happen. I am not sure how to check and see if you press it in the WinProc though... sorry.
    Language: C++
    Compiler: Visual C++ 6.0
    Currently Working On: Simple OpenGL aspects

  9. #24
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    They have "Foolproof" on the computers at my school...it's so simple to get rid of it's a disgrace.

  10. #25
    Registered User
    Join Date
    Jan 2002
    Posts
    31
    >Fortres

    My school runs fortres so that the users can't screw anything up. It is useless though, one way around is to open IE or Netscape and type C: as the address and that gets you in. As far as I know, Fortres can't be disabled by Ctrl+alt+del. You have to actually know the password, but I may be wrong. I'll check tomorrow.

    ~Brett
    "Some succeed because they are destined to, others succeed because they are determined to."
    ~Anonymous

    "A shorn scrotum is quite breathtaking, I suggest you try it."
    ~Dr. Evil

    EMT/Firefighter
    Eagle Scout

  11. #26
    Unregistered
    Guest
    guess they should get rid of IE then or put the disk drives as restricted sites or something...

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Disable ALT key commands
    By Lionmane in forum Windows Programming
    Replies: 9
    Last Post: 09-23-2005, 10:41 AM
  2. Ctrl Alt Del
    By cboard_member in forum A Brief History of Cprogramming.com
    Replies: 27
    Last Post: 07-20-2005, 07:36 AM
  3. how to capture CTRL, SHIFT and ALT ?
    By goldenrock in forum C Programming
    Replies: 3
    Last Post: 11-06-2003, 01:20 AM
  4. Trapping Ctrl Alt Delete
    By emus21 in forum A Brief History of Cprogramming.com
    Replies: 14
    Last Post: 09-17-2003, 12:10 PM
  5. how to trap Ctrl + Alt + Del
    By samudrala_99 in forum Windows Programming
    Replies: 5
    Last Post: 12-16-2002, 01:01 AM