├── .gitignore ├── README.md ├── captcha ting.py └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | local_settings.py 55 | 56 | # Flask stuff: 57 | instance/ 58 | .webassets-cache 59 | 60 | # Scrapy stuff: 61 | .scrapy 62 | 63 | # Sphinx documentation 64 | docs/_build/ 65 | 66 | # PyBuilder 67 | target/ 68 | 69 | # IPython Notebook 70 | .ipynb_checkpoints 71 | 72 | # pyenv 73 | .python-version 74 | 75 | # celery beat schedule file 76 | celerybeat-schedule 77 | 78 | # dotenv 79 | .env 80 | 81 | # virtualenv 82 | venv/ 83 | ENV/ 84 | 85 | # Spyder project settings 86 | .spyderproject 87 | 88 | # Rope project settings 89 | .ropeproject 90 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # captchaTing 2 | Google reCaptcha token harvester 3 | 4 | All this does is store tokens in a list, you can work out how to do what you wanna do with the tokens 5 | CBA to make a requirements.txt file so you gonna have to work out which modules you need to install yourself, sorry xox 6 | 7 | Instructions: 8 | - you need to edit your hosts file so that you can solve captchas on the domain the captcha is hosted on, for this example we using supreme 9 | - run notepad as administrator --> open file --> c:\Windows\System32\Drivers\etc 10 | - select view all files --> open file called "hosts" 11 | - somewhere you need to put this: 127.0.0.1 supremenewyork.com 12 | - then click save (not save as) 13 | - put the sitekey for supreme in the code where it is marked (cba to make it inputtable in the actual programming) 14 | - the web address for solving captcha will be "http://WEBSITEYOUCHOSE:5000/solve" you need to put that in the code where it is marked 15 | - save the shit and run it 16 | 17 | IF IT DOESN'T WORK, THEN DM ME WHY IT DOESN'T WORK. I DON'T CARE IF YOU DON'T KNOW HOW TO SET IT UP OR USE IT, I WILL NOT HELP YOU xox 18 | -------------------------------------------------------------------------------- /captcha ting.py: -------------------------------------------------------------------------------- 1 | # captchaTing.py 2 | 3 | from datetime import datetime 4 | import webbrowser 5 | from flask import Flask, render_template, request 6 | import _thread 7 | import logging 8 | 9 | tokens = [] 10 | 11 | def stamp(): 12 | timestamp = str("["+datetime.utcnow().strftime("%H:%M:%S")+"]") 13 | return timestamp 14 | 15 | app = Flask(__name__) 16 | 17 | log = logging.getLogger('werkzeug') 18 | log.setLevel(logging.ERROR) 19 | 20 | @app.route('/', methods=['GET', 'POST']) 21 | @app.route('/solve', methods=['GET', 'POST']) 22 | 23 | def solve(): 24 | sitekey = "6LeWwRkUAAAAAOBsau7KpuC9AV-6J8mhw4AjC3Xz" # SITEKEY GOES HERE FAM 25 | if request.method == "POST": 26 | token = request.form.get('g-recaptcha-response', '') 27 | tokens.append(token) 28 | count = len(tokens) 29 | print("{} stored token | {} total stored".format(stamp(), count)) 30 | return render_template('index.html', sitekey=sitekey) 31 | 32 | def harvestTokens(): 33 | _thread.start_new_thread(app.run, ()) 34 | webbrowser.open("http://supremenewyork.com:5000/solve") # WEB ADDRESS FOR SOLVING CAPTCHA GOES HERE FAM 35 | return 36 | 37 | def main(): 38 | print("captcha ting we out here") 39 | print("this shit was made by the real chef, cos he the real chef\n\n") 40 | harvestTokens() 41 | input("") 42 | 43 | if __name__ == '__main__': 44 | main() 45 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Captcha Ting 4 | 14 | 15 | 16 |

Token Harvesting LITTO

17 |
18 |
19 |
20 | 21 |

22 |
23 |
24 | 25 | 26 | --------------------------------------------------------------------------------