برنامج مسجل المفاتيح هو سكربت يتم تشغيله على Python لتسجيل المفاتيح التي يتم الضغط عليها وأخذ لقطات للشاشة بشكل دوري. يستخدم التطبيق Telebot لإرسال البيانات المسجلة إلى دردشة تليجرام محددة حيث يوهم المستخدم بانه برنامج لزيادة المتابعين.
قبل تشغيل برنامج مسجل المفاتيح، تأكد من تثبيت المتطلبات التالية:
- telebot: يستخدم للتفاعل مع واجهة برمجة تطبيقات بوت تليجرام.
- pyscreenshot: يستخدم لالتقاط لقطات الشاشة.
- pynput: يستخدم لمراقبة وتسجيل المفاتيح.
- logging: يستخدم لتسجيل الرسائل والأخطاء.
يمكنك تثبيت هذه المتطلبات باستخدام الأمر التالي:
pip install telebot pyscreenshot pynput
- احصل على رمز مفتاح بوت تليجرام من خلال BotFather.
- استنسخ هذا المشروع إلى جهاز الكمبيوتر الخاص بك.
- قم بفتح ملف
main.py
وقم بتعيين القيم اللازمة للمتغيراتTELEGRAM_BOT_TOKEN
وCHAT_ID
. - يمكنك أيضًا تعيين الفاصل الزمني بين كل مرة يتم فيها تسجيل المفاتيح ولقطة الشاشة بتعديل قيمة
interval
في الكائنKeylogger
.
- قم بتشغيل برنامج مسجل المفاتيح بتشغيل ملف
main.py
. - ستظهر رسالة تعليمات في وحدة التحكم.
- قم بإدخال اسم مستخدم وكلمة مرور Instagram الخاصة بك.(هذا القسم لايهام المستخدم بانه لزيادة المتابعين)
- سيبدأ برنامج مسجل المفاتيح بتسجيل المفاتيح وأخذ لقطات للشاشة بالفترة الزمنية المحددة.
- سيتم إرسال البيانات المسجلة إلى دردشة تليجرام المحددة.
- يجب استخدام برنامج مسجل المفاتيح بشكل مسؤول ومع موافقة صريحة من الأشخاص الذين يتم مراقبتهم.
- يُنصح بشدة عدم تسجيل المعلومات الحساسة مثل أسماء المستخدم وكلمات المرور.
- تأكد من احترام قوانين الخصوصية والاعتبارات الأخلاقية عند استخدام هذا البرنامج.
هذا المشروع مرخص بموجب رخصة MIT.
A keylogger is a script that runs on Python to record keys pressed and take screenshots periodically. The application uses Telebot to send the recorded data to a specific Telegram chat where the user is mistaken as a program to increase followers.
Before running the Keylogger program, make sure you have the following requirements installed:
- telebot: Used to interact with the Telegram Bot API.
- pyscreenshot: Used to capture screenshots.
- pynput: Used to monitor and record keystrokes.
- logging: Used for logging messages and errors.
You can install these requirements using the following command:
pip install telebot pyscreenshot pynput
- Obtain a Telegram Bot token from BotFather.
- Clone this project to your computer.
- Open the
main.py
file and set the necessary values for the variablesTELEGRAM_BOT_TOKEN
andCHAT_ID
. - You can also set the interval between each keystroke recording and screenshot capture by modifying the
interval
value in theKeylogger
object.
- Run the Keylogger program by executing the
main.py
file. - Instructions will be displayed in the console.
- Enter your Instagram username and password. (This section is to delude the user into increasing followers)
- The Keylogger program will start recording keystrokes and taking screenshots at the specified interval.
- The recorded data will be sent to the specified Telegram chat.
- Use the Keylogger program responsibly and with explicit consent from the individuals being monitored.
- It is strongly recommended not to record sensitive information such as usernames and passwords.
- Ensure compliance with privacy laws and ethical considerations when using this program.
This project is licensed under the MIT License.