Skip to content

This script checks the validity of Webtoon accounts using provided email and password combinations. It supports both proxy and proxyless modes.

License

Notifications You must be signed in to change notification settings

sexfrance/Webtoon-Account-Checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Webtoon Account Checker

This script is an asynchronous account checker for Webtoon accounts that features proxy support, RSA encryption, and efficient batch processing. It reads accounts from a text file, validates them against Webtoon's authentication servers, and provides formatted output with truncated credentials for better readability. The script uses modern async/await patterns for optimal performance and includes comprehensive error handling to manage network issues and invalid responses.

💬 Discord · 📜 ChangeLog · ⚠️ Report Bug · 💡 Request Feature

⚙️ Installation

  • Requires: Python 3.7+
  • Make a python virtual environment: python3 -m venv venv
  • Source the environment: venv\Scripts\activate (Windows) / source venv/bin/activate (macOS, Linux)
  • Install the requirements: pip install -r requirements.txt

🔥 Features

  • Checks Webtoon accounts really fast (Valid, Invalid and Email verification pending).
  • Supports both proxy and proxyless modes.
  • Logs results with different levels (success, failure, warning).
  • Truncates passwords to the first 8 characters for checking.
  • Saves the accounts in separate files depending on the result (Valid, invalid...)

📝 Usage

  • Prepare a file named accounts.txt with email:password combinations, one per line.

  • (Optional) Prepare a file named proxies.txt with proxies, one per line in user:pass@ip:port format, if you want to use proxies.

  • Run the script:

    python main.py
checker = AccountChecker(proxyless=True)  # Set to True for proxyless mode
asyncio.run(checker.start())

📹 Preview

Preview


❗ Disclaimers

  • I am not responsible for anything that may happen, such as API Blocking, IP ban, etc.
  • This was a quick project that was made for fun and personal use if you want to see further updates, star the repo & create an "issue" here

📜 ChangeLog

v0.0.1 ⋮ 12/07/2024
! Initial release

Releases

No releases published

Packages

No packages published

Languages