abhisharma404 / vault

swiss army knife for hackers
https://abhisharma404.github.io/vault
MIT License
512 stars 94 forks source link

Cannot import keylooger #95

Closed mzfr closed 4 years ago

mzfr commented 5 years ago

In vault.py#L912 we are doing

 keyloggerObj = keylogger.Keylogger(interval=args.interval,

but instead it should be

 keyloggerObj = keylogger.keylogger(interval=args.interval,

Notice the lowercase k after = keylogger.

This is because the file name is utilities/keylogger

sap143 commented 4 years ago

I think line number should be 928 instead of 912 in vault.py

sap143 commented 4 years ago

@mzfr I would like to work on this .

mzfr commented 4 years ago

@sap143 Okay You can work on this.

Just remember you won't be allowed to work on any other issue from this projec unless your PR if accepted or you abandon the task.

mzfr commented 4 years ago

Fixed by #100