Thread: 2 Questions...

  1. #1
    Registered User
    Join Date
    Nov 2004
    Location
    Pennsylvania
    Posts
    434

    2 Questions...

    Ok guys, i recently got a keylogger program for my computer its very simple but its only a trial version. The reason i got it was because i wanted to see if anyone else was messing with my computer when i was not around, luckily no one was . Naturally i wanted to try to make my own to save me money and just for the fun of it.

    So my 2 questions are:

    (1) Can i get a console app to run in the background and/or hidden?

    (2) How do i get it to log keystrokes?

    Thanks for all the help guys!

  2. #2
    Registered User
    Join Date
    Dec 2005
    Posts
    28
    That is seriously not cool, how could anyone know whether or not you have some nefarious purpose for that keylogger program you're trying to write?

    Neway, I'll answer your first question:

    (1) That would, to my knowledge be way easier to make with a .bat file, put @Echo off above all comands. ( Note: Thats not C or C++, thats just a batch file, and will only work if you have a Computer running windows, I think )

  3. #3
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    There is a function that destroys the console, but there is, to the best of my knowledge, no way of preventing the console from flashing up.
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

  4. #4
    Registered User
    Join Date
    Aug 2005
    Posts
    1,267
    write an NT Service program -- if you are using Visual Studio you can write ATL/COM Service. That will install on 2000/XP (maybe 95/98/ME also) and run hidden in the background.

    How to write keylogger program -- I don't know. But check out win32 hooks

  5. #5
    Registered User
    Join Date
    Nov 2004
    Location
    Pennsylvania
    Posts
    434
    Ok thanks Ancient Dragon, ill look into that. I think i saw another question around the threads using those hook things. Thanks again.

    To Krageon, my intent is to protect my computer. I dont see that as Nefarious at all. Im not asking how to write a virus, im not even asking how to get the keylogger to email the logged keys to me. Im making a program to see who (if anyone) was accessing my computer and what they were doing. I dont see that as bad at all, in fact i see it as a good thing.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. questions....so many questions about random numbers....
    By face_master in forum C++ Programming
    Replies: 2
    Last Post: 07-30-2009, 08:47 AM
  2. A very long list of questions... maybe to long...
    By Ravens'sWrath in forum C Programming
    Replies: 16
    Last Post: 05-16-2007, 05:36 AM
  3. Several Questions, main one is about protected memory
    By Tron 9000 in forum C Programming
    Replies: 3
    Last Post: 06-02-2005, 07:42 AM
  4. Trivial questions - what to do?
    By Aerie in forum A Brief History of Cprogramming.com
    Replies: 23
    Last Post: 12-26-2004, 09:44 AM
  5. questions questions questions.....
    By mfc2themax in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 08-14-2001, 07:22 AM