Creating a very simple keylogger
1. Open Visual Studio or Visual Basic.
2. Create a new windows form project and name it whatever you want.
Now to the controls
1. Add one richtextbox, make it dock "Fill"
2. Add one timer, make the interval 100 and make it enabled
now to add the code
Add this piece of code under public class form1, like on the picture above
1. Open Visual Studio or Visual Basic.
2. Create a new windows form project and name it whatever you want.
Now to the controls
1. Add one richtextbox, make it dock "Fill"
2. Add one timer, make the interval 100 and make it enabled
now to add the code
Add this piece of code under public class form1, like on the picture above
Public Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Int32) As Int16