Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 6002

Spotify Acoount Checker (Open Source c#) BLAZING FAST

by Killaux - 10 November, 2023 - 10:47 PM
This post is by a banned member (Soal) - Unhide
Soal  
Registered
129
Posts
2
Threads
3 Years of service
#73
ygggggggggggggggggggg
[Image: Row1qrSH.png]
This post is by a banned member (o33j) - Unhide
o33j  
Registered
25
Posts
0
Threads
1 Year of service
#74
(10 November, 2023 - 10:47 PM)Killaux Wrote: Show More
Spotify Account CheckerAutomate the process of verifying the validity of Spotify accounts.
DescriptionSpotify Account Checker is a tool that checks a list of Spotify accounts to determine their validity. It takes a list of accounts in the format 
Code:
email:password
 and outputs which ones are valid.Prerequisites
  • .NET SDK [Just Use Visual Studio]
  • Selenium WebDriver
  • Edge WebDriver
Usage
  1. Create a text file named 
    Code:
    account.txt
     in the project directory.
  2. Input your list of Spotify accounts in the format:
[email protected]:password1
[email protected]:password2
  1. Run the program:
  2. After processing, valid accounts will be saved in 
    Code:
    working.txt
    .
Customisation
  • Thread Count: By default, the checker processes 5 accounts concurrently. Adjust the thread count by modifying the 
    Code:
    threadCount
     variable in 
    Code:
    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 in 
    Code:
    Program.cs
    :
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:
  1. Install the ChromeDriver NuGet package:
    dotnet add package Selenium.WebDriver.ChromeDriver
  2. Ensure you have Chrome Browser installed.
  3. 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:
  1. Ensure you have Brave Browser installed.
  2. Locate the Brave executable on your system:
    • Common on Windows: 
      Code:
      C:\Program Files (x86)\BraveSoftware\Brave-Browser\Application\brave.exe
  3. 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 
Code:
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.

A LIKE WILL MOTIVATE ME TO SHARE MORE 

[Image: hype.png]  And contact me via discord : killaux   [Image: hype.png]

[Image: aiXoXdH.gif]

ty
This post is by a banned member (johnaminux) - Unhide
23
Posts
0
Threads
1 Year of service
#75
thanks man and good luck
This post is by a banned member (santanaakkj) - Unhide
94
Posts
0
Threads
1 Year of service
#76
(10 November, 2023 - 10:47 PM)Killaux Wrote: Show More
Spotify Account CheckerAutomate the process of verifying the validity of Spotify accounts.
DescriptionSpotify Account Checker is a tool that checks a list of Spotify accounts to determine their validity. It takes a list of accounts in the format 
Code:
email:password
 and outputs which ones are valid.Prerequisites
  • .NET SDK [Just Use Visual Studio]
  • Selenium WebDriver
  • Edge WebDriver
Usage
  1. Create a text file named 
    Code:
    account.txt
     in the project directory.
  2. Input your list of Spotify accounts in the format:
[email protected]:password1
[email protected]:password2
  1. Run the program:
  2. After processing, valid accounts will be saved in 
    Code:
    working.txt
    .
Customisation
  • Thread Count: By default, the checker processes 5 accounts concurrently. Adjust the thread count by modifying the 
    Code:
    threadCount
     variable in 
    Code:
    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 in 
    Code:
    Program.cs
    :
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:
  1. Install the ChromeDriver NuGet package:
    dotnet add package Selenium.WebDriver.ChromeDriver
  2. Ensure you have Chrome Browser installed.
  3. 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:
  1. Ensure you have Brave Browser installed.
  2. Locate the Brave executable on your system:
    • Common on Windows: 
      Code:
      C:\Program Files (x86)\BraveSoftware\Brave-Browser\Application\brave.exe
  3. 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 
Code:
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.

A LIKE WILL MOTIVATE ME TO SHARE MORE 

[Image: hype.png]  And contact me via discord : killaux   [Image: hype.png]

[Image: aiXoXdH.gif]
tyyyyyyyyyyyyyyyyyyyyy
This post is by a banned member (Killaux) - Unhide
This post is by a banned member (BypassMethod) - Unhide
27
Posts
0
Threads
#78
yyy
This post is by a banned member (SkinnyLhway) - Unhide
46
Posts
0
Threads
1 Year of service
#79
Yuy
This post is by a banned member (lodisblue) - Unhide
lodisblue  
Registered
25
Posts
0
Threads
#80
thx
(10 November, 2023 - 10:47 PM)Killaux Wrote: Show More
Spotify Account CheckerAutomate the process of verifying the validity of Spotify accounts.
DescriptionSpotify Account Checker is a tool that checks a list of Spotify accounts to determine their validity. It takes a list of accounts in the format 
Code:
email:password
 and outputs which ones are valid.Prerequisites
  • .NET SDK [Just Use Visual Studio]
  • Selenium WebDriver
  • Edge WebDriver
Usage
  1. Create a text file named 
    Code:
    account.txt
     in the project directory.
  2. Input your list of Spotify accounts in the format:
[email protected]:password1
[email protected]:password2
  1. Run the program:
  2. After processing, valid accounts will be saved in 
    Code:
    working.txt
    .
Customisation
  • Thread Count: By default, the checker processes 5 accounts concurrently. Adjust the thread count by modifying the 
    Code:
    threadCount
     variable in 
    Code:
    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 in 
    Code:
    Program.cs
    :
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:
  1. Install the ChromeDriver NuGet package:
    dotnet add package Selenium.WebDriver.ChromeDriver
  2. Ensure you have Chrome Browser installed.
  3. 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:
  1. Ensure you have Brave Browser installed.
  2. Locate the Brave executable on your system:
    • Common on Windows: 
      Code:
      C:\Program Files (x86)\BraveSoftware\Brave-Browser\Application\brave.exe
  3. 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 
Code:
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.

A LIKE WILL MOTIVATE ME TO SHARE MORE 

[Image: hype.png]  And contact me via discord : killaux   [Image: hype.png]

[Image: aiXoXdH.gif]

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 2 Guest(s)