A Python tool for checking if an email is linked to Snapchat, Twitter, or Instagram accounts.
Project description
JackSocialChecker
أداة بايثون للتحقق مما إذا كان البريد الإلكتروني مرتبطًا بحسابات Snapchat أو Twitter أو Instagram. `
pip install jack_social_checker
الاستخدام
-
إنشاء
email.txt: قم بإنشاء ملف يسمىemail.txtفي نفس دليل تشغيل السكريبت. يجب أن يحتوي هذا الملف على قائمة بعناوين البريد الإلكتروني، كل عنوان في سطر منفصل.email1@example.com email2@example.com -
إنشاء
proxies.txt(اختياري): إذا كنت ترغب في استخدام بروكسيات، فقم بإنشاء ملف يسمىproxies.txtيحتوي على قائمة بالبروكسيات، كل بروكسي في سطر منفصل. يمكن أن تكون البروكسيات بتنسيقIP:PORT.192.168.1.1:8080 192.168.1.2:8080 -
تشغيل الأداة:
from jack_social_checker.checker import JackSocialChecker import sys try: with open("email.txt", "r") as text: emails_to_check = text.read().strip().splitlines() except FileNotFoundError: print("email.txt not found. Please create it with emails to check.") sys.exit(1) try: with open("proxies.txt", "r") as pro: proxy_list = pro.read().strip().splitlines() except FileNotFoundError: print("proxies.txt not found. Please create it with proxies.") proxy_list = [] print(""" [+] 1 - للجميع (تويتر، انستغرام، سناب شات)[+] [===================================================] [+] 2 - فحص بريد تويتر [+] [===================================================] [+] 3 - فحص بريد انستغرام [+] [===================================================] [+] 4 - فحص بريد سناب شات [+] مثال على اختيار متعدد: 2 3 أو 4 3 هكذا :) """) user_choice = str(input("أدخل الرقم من فضلك:")) num_threads = int(input("[+] أدخل عدد الثريدات [+]:")) proxy_type_choice = int(input("[1] Http/Https ---- [2] socks4 ------ [3] socks5 [أدخل الرقم فقط]:")) checker = JackSocialChecker(emails_to_check, proxy_list, user_choice, num_threads) checker.start(proxy_type_choice)
الميزات
- التحقق من ارتباط البريد الإلكتروني بحسابات Instagram و Twitter و Snapchat.
- دعم البروكسيات (HTTP/HTTPS، SOCKS4، SOCKS5).
- العمل متعدد الخيوط (Multithreading) لتحسين الأداء.
الاعتمادات
requeststhreadingqueue
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters