This tools helps you automate the process of checking if a Netflix cookie is valid or not saving you time and effort. Simply put all of your cookies in Netscape or JSON format (.txt | .json) in the cookies
directory then run the script. It will check all of the cookies and output the valid ones in a new folder called hits
, and the invalid ones in a new folder called failures
.
- Install the required packages by running
pip install -r requirements.txt
. - A new directory called
cookies
will automatically be created. Put all of your cookies in it. - Run the script by running
python main.py
.
Note
No proxy is needed. Also, this script supports both Netscape and JSON format now.
Keep in mind that the cookies will be renamed then moved to their respective folders. If the cookie is valid, the script will try to extract 4 things:
- The country of sign up. (e.g. US, BR, MX, etc.).
- Does the account have extra members feature. (e.g. True, None).
- Account GUID.
- Member since date.
Tip
By default, the script automatically handles duplicates since it names working cookies in this format cookie_
+ _country_
+ _extra(True/None)_
+ _guid_
. So basically, any duplicates will be overitten.
Also, this script supports multi-threading.
This tool was created for educational purposes. Use it at your own risk.