due to someone elses post about a keylogger, i wanted to use the program:
# get the character of a key pressed (no return key needed)
# works only in the command window and with Windows OS
# msvcrt.dll is the MS C library containing most standard C functions
from msvcrt import getch
while ord(getch()) != 27:
z = getch()
print z
but i was wondering how i could modify it so that it could be used to email a list of characters entered between a certain timeframe (could be described as an arg in a function) to a email specified in the program.
just in case you were wondering, lots of people have been using my computer for illegal things and i want to find out how they are getting past my blocks so i thought this would be the best way