Skip to content

Instantly share code, notes, and snippets.

@kylestev
Created July 11, 2014 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylestev/f5b0cab32c8d7feaa10a to your computer and use it in GitHub Desktop.
Save kylestev/f5b0cab32c8d7feaa10a to your computer and use it in GitHub Desktop.
Want to fake your location on Tinder? Connect your phone to mitmproxy and run this script and you're good to go.
from libmproxy.script import concurrent
@concurrent
def request(context, flow):
if 'user/ping' in flow.request.path:
flow.request.content = '{"lat":44.563781,"lon":-123.279444}' # Oregon State
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment