はIAMのpythonを持つ単純なキーロガーを構築する方法を私の自己を教えしようとしている情報セキュリティとIAM新しい、私はサイトでこのコードを見つけました:パラメータを渡さずに関数を呼び出す方法はありますか?
import pythoncom, pyHook
def OnKeyboardEvent(event):
print 'MessageName:',event.MessageName
print 'Message:',event.Message
print 'Time:',event.Time
print 'Window:',event.Window
print 'WindowName:',event.WindowName
print 'Ascii:', event.Ascii, chr(event.Ascii)
print 'Key:', event.Key
print 'KeyID:', event.KeyID
print 'ScanCode:', event.ScanCode
print 'Extended:', event.Extended
print 'Injected:', event.Injected
print 'Alt', event.Alt
print 'Transition', event.Transition
print '---'
# return True to pass the event to other handlers
return True
# create a hook manager
hm = pyHook.HookManager()
# watch for all mouse events
hm.KeyDown = OnKeyboardEvent
# set the hook
hm.HookKeyboard()
# wait forever
pythoncom.PumpMessages()
と私は、このコードを理解しようとしたとき、私が見つかりました。関数の呼び出し「OnKeyboardEvent」それは私の質問があり、パラメータ
hm.KeyDown = OnKeyboardEvent
です与えることなく: はそれをパラメータを与えることなく機能を呼び出すためのPythonで方法はありますか?
'hm.KeyDown = OnKeyboardEvent'は関数呼び出しではありません。 [こちら](https://stackoverflow.com/questions/10354163/assigning-a-function-to-a-variable)を確認してください – jacoblaw
@ jacoblawありがとうございました –