kodingkirby / TinderBot

PoC bot built using API info sniffed from Tinder and Oauth tokens sourced from facebook (currently obsolete due to new Tinder update 12/2019)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tinderbot

Proof of concept autoliker script that scrapes user profiles into a database for later analysis.

screenshot

Installation

OS X & Linux & Windows with Docker:

docker build -t tinderbot .
docker run -it tinderbot

Native Python3:

pip install robobrowser requests bs4 config tinydb lxml
python3 main.py

Quickstart

Once you launch the app, you'll be prompted for credentials. These are used by a robobrowser script to retrieve an Oauth token from Facebook to use with Tinder's API endpoint. Type in the full email address and password associated with its Facebook account.

Once authenticated, you can start the autoliker by pressing 1 then Enter.

screenshot

Silent Mode

TinderBot has the capability to stay on in the background, liking people throughout the day. By default, the bot will wait 20-40 minutes between bursts of likes and will cease after 8 hours.

To use silent mode, you need to first rename tinder_config_ex.py to config.py and populate the username and password fields

Run Silent Mode:

python3 main.py s

Optionally, you can specific how many 'bursts' to complete before stopping:

python3 main.py s 15

A burst value of 999 will run perpetually:

python3 main.py 999

How it works

BurpSuite write up and sample data can be found in the docs folder

This app carries no warranty, and is for educational use only

About

PoC bot built using API info sniffed from Tinder and Oauth tokens sourced from facebook (currently obsolete due to new Tinder update 12/2019)


Languages

Language:Python 99.4%Language:Dockerfile 0.6%