KeyLogger In C++ Programming Language + Source Code
What Is Purpose Of This Post.
This Is Created Only For Educational Purpose .
What You Need To Write This Key Logger. ?
- Basic Understanding And Working Of Programming Language.
- Basic Understanding Of C++
- Knowledge Of GetAsyncKeyState() Function.
- Knowledge Of Keyboard Key Pre-Defined Code By Micro-Soft.
Why Need For Key Logger.
- We Can Detect Our Key Board Working.
- We Can Use As A Pen-Tester. { For Educational Purpose. }
Working Of Key Logger :
- This Detect Which Key Is Pressed In Key Board.
- This Save Key Presses On Log . txt File .
- This Program Run As Back Ground Service.
How To Code This :
- I Have Created A While Loop.
- In This While Loop It Check Again And Again Key Presses Of Key Board
- It Is Created In C++ So It Check Key Presses By C++ Pre-Defined Function Called { GetAsyncKeyState() }
4. You Can Code This Like . If ( GetAsyncKeyState() == ‘B’ )
{
Save This To Log.txt File One Thing Must Be Note : Open File Append + Mode
}
What You Have Learn In This Post.
1.You Learn Close Working With Key Board.
2. Deep Understanding Of Programming Language.
Comments
Post a Comment