• We just launched and are currently in beta. Join us as we build and grow the community.

Mail Brute ✨SPOTIFY ACOOUNT CHECKER✨✅OPEN SOURCE C#✅BLAZING FAST✅

Santiago363

Code Generation Expert
S Rep
0
0
0
Rep
0
S Vouches
0
0
0
Vouches
0
Posts
106
Likes
147
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 300 XP
[Just Use Visual Studio]
Selenium WebDriver
Edge WebDriver
Usage
Create a text file named
account.txt
in the project directory.
Input your list of Spotify accounts in the format:
email1@pruned_24424066.com:password1
email2@pruned_24424066.com:password2
Run the program:
After processing, valid accounts will be saved in
working.txt
Customisation
Thread Count: By default, the checker processes 5 accounts concurrently. Adjust the thread count by modifying the
threadCount
Program.cs
:
int threadCount = 5; // Change this value as needed
Retry Logic: The program retries an account up to 3 times if it encounters a "429 Too Many Requests" error. Adjust these settings
int retryCount = 3; // Adjust number of retries
int delayInSeconds = 10; // Adjust wait time between retriesChanging the Web DriverBy default, this project uses the Edge WebDriver. If you wish to change this to Chrome or Brave, follow the steps below:
Using Chrome:
Install the ChromeDriver NuGet package:
dotnet add package Selenium.WebDriver.ChromeDriver
Ensure you have Chrome Browser installed.
Replace the Edge WebDriver instantiation in the code:
var driverService = EdgeDriverService.CreateDefaultService();
IWebDriver driver = new EdgeDriver(driverService);with the Chrome WebDriver instantiation:
IWebDriver driver = new ChromeDriver();
Using Brave:
Ensure you have Brave Browser installed.
Locate the Brave executable on your system:
Common on Windows:
C:\Program Files (x86)\BraveSoftware\Brave-Browser\Application\brave.exe
Use ChromeDriver (Brave is built on the same engine as Chrome), but point it to the Brave browser executable:
ChromeOptions options = new ChromeOptions();
options.BinaryLocation = @"path_to_brave"; // Replace with the path to your Brave executable
IWebDriver driver = new ChromeDriver(options);
Replace
path_to_brave
with the appropriate path for your system from step 2.Notes
Ensure you abide by Spotify's terms of service when using this tool.
Accounts listed in working.txt have been verified as valid at the time of checking but may become invalid in the future so make sure to check them directly before use.
Download:
You must upgrade your account or reply in the thread to view hidden text.
 

422,212

310,551

310,560

Top