forked from leegao/pokemongo-api-demo
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathmain.py
404 lines (330 loc) · 12.4 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
import requests
import re
import struct
import json
import argparse
import pokemon_pb2
import time
from google.protobuf.internal import encoder
from datetime import datetime
from geopy.geocoders import GoogleV3
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
from s2sphere import *
def encode(cellid):
output = []
encoder._VarintEncoder()(output.append, cellid)
return ''.join(output)
def getNeighbors():
origin = CellId.from_lat_lng(LatLng.from_degrees(FLOAT_LAT, FLOAT_LONG)).parent(15)
walk = [origin.id()]
# 10 before and 10 after
next = origin.next()
prev = origin.prev()
for i in range(10):
walk.append(prev.id())
walk.append(next.id())
next = next.next()
prev = prev.prev()
return walk
API_URL = 'https://pgorelease.nianticlabs.com/plfe/rpc'
LOGIN_URL = 'https://sso.pokemon.com/sso/login?service=https%3A%2F%2Fsso.pokemon.com%2Fsso%2Foauth2.0%2FcallbackAuthorize'
LOGIN_OAUTH = 'https://sso.pokemon.com/sso/oauth2.0/accessToken'
SESSION = requests.session()
SESSION.headers.update({'User-Agent': 'Niantic App'})
SESSION.verify = False
DEBUG = False
COORDS_LATITUDE = 0
COORDS_LONGITUDE = 0
COORDS_ALTITUDE = 0
FLOAT_LAT = 0
FLOAT_LONG = 0
deflat, deflng = 0, 0
default_step = 0.001
NUM_STEPS = 5
DATA_FILE = 'data.json'
DATA = []
def f2i(float):
return struct.unpack('<Q', struct.pack('<d', float))[0]
def f2h(float):
return hex(struct.unpack('<Q', struct.pack('<d', float))[0])
def h2f(hex):
return struct.unpack('<d', struct.pack('<Q', int(hex,16)))[0]
def prune():
# prune despawned pokemon
cur_time = int(time.time())
for i, poke in reversed(list(enumerate(DATA))):
poke['timeleft'] = poke['timeleft'] - (cur_time - poke['timestamp'])
poke['timestamp'] = cur_time
if poke['timeleft'] <= 0:
DATA.pop(i)
def write_data_to_file():
prune()
with open(DATA_FILE, 'w') as f:
json.dump(DATA, f, indent=2)
def add_pokemon(pokeId, name, lat, lng, timestamp, timeleft):
DATA.append({
'id': pokeId,
'name': name,
'lat': lat,
'lng': lng,
'timestamp': timestamp,
'timeleft': timeleft
});
def set_location(location_name):
geolocator = GoogleV3()
loc = geolocator.geocode(location_name)
print('[!] Your given location: {}'.format(loc.address.encode('utf-8')))
print('[!] lat/long/alt: {} {} {}'.format(loc.latitude, loc.longitude, loc.altitude))
global deflat
global deflng
deflat, deflng = loc.latitude, loc.longitude
set_location_coords(loc.latitude, loc.longitude, loc.altitude)
def set_location_coords(lat, long, alt):
global COORDS_LATITUDE, COORDS_LONGITUDE, COORDS_ALTITUDE
global FLOAT_LAT, FLOAT_LONG
FLOAT_LAT = lat
FLOAT_LONG = long
COORDS_LATITUDE = f2i(lat) # 0x4042bd7c00000000 # f2i(lat)
COORDS_LONGITUDE = f2i(long) # 0xc05e8aae40000000 #f2i(long)
COORDS_ALTITUDE = f2i(alt)
def get_location_coords():
return (COORDS_LATITUDE, COORDS_LONGITUDE, COORDS_ALTITUDE)
def api_req(api_endpoint, access_token, *mehs, **kw):
while True:
try:
p_req = pokemon_pb2.RequestEnvelop()
p_req.rpc_id = 1469378659230941192
p_req.unknown1 = 2
p_req.latitude, p_req.longitude, p_req.altitude = get_location_coords()
p_req.unknown12 = 989
if 'useauth' not in kw or not kw['useauth']:
p_req.auth.provider = 'ptc'
p_req.auth.token.contents = access_token
p_req.auth.token.unknown13 = 14
else:
p_req.unknown11.unknown71 = kw['useauth'].unknown71
p_req.unknown11.unknown72 = kw['useauth'].unknown72
p_req.unknown11.unknown73 = kw['useauth'].unknown73
for meh in mehs:
p_req.MergeFrom(meh)
protobuf = p_req.SerializeToString()
r = SESSION.post(api_endpoint, data=protobuf, verify=False)
p_ret = pokemon_pb2.ResponseEnvelop()
p_ret.ParseFromString(r.content)
if DEBUG:
print("REQUEST:")
print(p_req)
print("Response:")
print(p_ret)
print("\n\n")
if DEBUG:
print("[ ] Sleeping for 1 second")
time.sleep(1)
return p_ret
except Exception, e:
if DEBUG:
print(e)
print('[-] API request error, retrying')
time.sleep(1)
continue
def get_profile(access_token, api, useauth, *reqq):
req = pokemon_pb2.RequestEnvelop()
req1 = req.requests.add()
req1.type = 2
if len(reqq) >= 1:
req1.MergeFrom(reqq[0])
req2 = req.requests.add()
req2.type = 126
if len(reqq) >= 2:
req2.MergeFrom(reqq[1])
req3 = req.requests.add()
req3.type = 4
if len(reqq) >= 3:
req3.MergeFrom(reqq[2])
req4 = req.requests.add()
req4.type = 129
if len(reqq) >= 4:
req4.MergeFrom(reqq[3])
req5 = req.requests.add()
req5.type = 5
if len(reqq) >= 5:
req5.MergeFrom(reqq[4])
return api_req(api, access_token, req, useauth = useauth)
def get_api_endpoint(access_token, api = API_URL):
p_ret = get_profile(access_token, api, None)
try:
return ('https://%s/rpc' % p_ret.api_url)
except:
return None
def login_ptc(username, password):
print('[!] login for: {}'.format(username))
head = {'User-Agent': 'niantic'}
r = SESSION.get(LOGIN_URL, headers=head)
jdata = json.loads(r.content)
data = {
'lt': jdata['lt'],
'execution': jdata['execution'],
'_eventId': 'submit',
'username': username,
'password': password,
}
r1 = SESSION.post(LOGIN_URL, data=data, headers=head)
ticket = None
try:
ticket = re.sub('.*ticket=', '', r1.history[0].headers['Location'])
except Exception, e:
if DEBUG:
print(r1.json()['errors'][0])
return None
data1 = {
'client_id': 'mobile-app_pokemon-go',
'redirect_uri': 'https://www.nianticlabs.com/pokemongo/error',
'client_secret': 'w8ScCUXJQc6kXKw8FiOhd8Fixzht18Dq3PEVkUCP5ZPxtgyWsbTvWHFLm2wNY0JR',
'grant_type': 'refresh_token',
'code': ticket,
}
r2 = SESSION.post(LOGIN_OAUTH, data=data1)
access_token = re.sub('&expires.*', '', r2.content)
access_token = re.sub('.*access_token=', '', access_token)
return access_token
def raw_heartbeat(api_endpoint, access_token, response):
m4 = pokemon_pb2.RequestEnvelop.Requests()
m = pokemon_pb2.RequestEnvelop.MessageSingleInt()
m.f1 = int(time.time() * 1000)
m4.message = m.SerializeToString()
m5 = pokemon_pb2.RequestEnvelop.Requests()
m = pokemon_pb2.RequestEnvelop.MessageSingleString()
m.bytes = "05daf51635c82611d1aac95c0b051d3ec088a930"
m5.message = m.SerializeToString()
walk = sorted(getNeighbors())
m1 = pokemon_pb2.RequestEnvelop.Requests()
m1.type = 106
m = pokemon_pb2.RequestEnvelop.MessageQuad()
m.f1 = ''.join(map(encode, walk))
m.f2 = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
m.lat = COORDS_LATITUDE
m.long = COORDS_LONGITUDE
m1.message = m.SerializeToString()
response = get_profile(
access_token,
api_endpoint,
response.unknown7,
m1,
pokemon_pb2.RequestEnvelop.Requests(),
m4,
pokemon_pb2.RequestEnvelop.Requests(),
m5)
payload = response.payload[0]
heartbeat = pokemon_pb2.ResponseEnvelop.HeartbeatPayload()
heartbeat.ParseFromString(payload)
return heartbeat
def heartbeat(api_endpoint, access_token, response):
while True:
try:
h = raw_heartbeat(api_endpoint, access_token, response)
return h
except Exception, e:
if DEBUG:
print(e)
print('[-] Heartbeat missed, retrying')
def scan(api_endpoint, access_token, response, origin, pokemons):
steps = 0
steplimit = NUM_STEPS
pos = 1
x = 0
y = 0
dx = 0
dy = -1
while steps < steplimit**2:
original_lat = FLOAT_LAT
original_long = FLOAT_LONG
parent = CellId.from_lat_lng(LatLng.from_degrees(FLOAT_LAT, FLOAT_LONG)).parent(15)
h = heartbeat(api_endpoint, access_token, response)
hs = [h]
seen = set([])
for child in parent.children():
latlng = LatLng.from_point(Cell(child).get_center())
set_location_coords(latlng.lat().degrees, latlng.lng().degrees, 0)
hs.append(heartbeat(api_endpoint, access_token, response))
set_location_coords(original_lat, original_long, 0)
visible = []
for hh in hs:
for cell in hh.cells:
for wild in cell.WildPokemon:
hash = wild.SpawnPointId + ':' + str(wild.pokemon.PokemonId)
if (hash not in seen):
visible.append(wild)
seen.add(hash)
for cell in h.cells:
if cell.NearbyPokemon:
other = LatLng.from_point(Cell(CellId(cell.S2CellId)).get_center())
diff = other - origin
# print(diff)
difflat = diff.lat().degrees
difflng = diff.lng().degrees
if len(cell.NearbyPokemon) > 0:
print('[+] Found pokemon!')
for poke in cell.NearbyPokemon:
print(' (%s) %s' % (poke.PokedexNumber, pokemons[poke.PokedexNumber - 1]['Name']))
for poke in visible:
other = LatLng.from_degrees(poke.Latitude, poke.Longitude)
diff = other - origin
# print(diff)
difflat = diff.lat().degrees
difflng = diff.lng().degrees
timestamp = int(time.time())
add_pokemon(poke.pokemon.PokemonId, pokemons[poke.pokemon.PokemonId - 1]['Name'], poke.Latitude, poke.Longitude, timestamp, poke.TimeTillHiddenMs / 1000)
write_data_to_file()
if (-steplimit/2 < x <= steplimit/2) and (-steplimit/2 < y <= steplimit/2):
set_location_coords((x * 0.0025) + deflat, (y * 0.0025 ) + deflng, 0)
if x == y or (x < 0 and x == -y) or (x > 0 and x == 1-y):
dx, dy = -dy, dx
x, y = x+dx, y+dy
steps +=1
print('[+] Scan: %0.1f %%' % (((steps + (pos * .25) - .25) / steplimit**2) * 100))
def main():
write_data_to_file()
pokemons = json.load(open('pokemon.json'))
parser = argparse.ArgumentParser()
parser.add_argument("-u", "--username", help="PTC Username", required=True)
parser.add_argument("-p", "--password", help="PTC Password", required=True)
parser.add_argument("-l", "--location", help="Location", required=True)
parser.add_argument("-d", "--debug", help="Debug Mode", action='store_true')
parser.set_defaults(DEBUG=False)
args = parser.parse_args()
if args.debug:
global DEBUG
DEBUG = True
print('[!] DEBUG mode on')
set_location(args.location)
access_token = login_ptc(args.username, args.password)
if access_token is None:
print('[-] Error logging in: possible wrong username/password')
return
print('[+] RPC Session Token: {} ...'.format(access_token[:25]))
api_endpoint = get_api_endpoint(access_token)
if api_endpoint is None:
print('[-] RPC server offline')
return
print('[+] Received API endpoint: {}'.format(api_endpoint))
response = get_profile(access_token, api_endpoint, None)
if response is not None:
print('[+] Login successful')
payload = response.payload[0]
profile = pokemon_pb2.ResponseEnvelop.ProfilePayload()
profile.ParseFromString(payload)
print('[+] Username: {}'.format(profile.profile.username))
creation_time = datetime.fromtimestamp(int(profile.profile.creation_time)/1000)
print('[+] You are playing Pokemon Go since: {}'.format(
creation_time.strftime('%Y-%m-%d %H:%M:%S'),
))
for curr in profile.profile.currency:
print('[+] {}: {}'.format(curr.type, curr.amount))
else:
print('[-] Ooops...')
origin = LatLng.from_degrees(FLOAT_LAT, FLOAT_LONG)
while True:
scan(api_endpoint, access_token, response, origin, pokemons)
if __name__ == '__main__':
main()