View difference between Paste ID: z2Sxua3Y and NTz6Y7w6
SHOW: | | - or go back to the newest paste.
1
The following are the requirements for setting up Rastpasta's mitm node for Pokemon go on windows.
2
3
PC:
4
- A 64-bit Windows installation
5
- Microsoft visual Studio (2015 recommended but older will probably work):
6
https://www.visualstudio.com/downloads/download-visual-studio-vs
7
- Python (tested with 2.7) ---select add to PATH during installation!!!
8
https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi
9
- Node.JS with npm (current and 4.4.7 should both work)
10
https://nodejs.org/en/
11
- Git (link below or install with visual studio)
12
https://git-scm.com/download/win
13
- CMAKE (64-bit installer)
14
https://cmake.org/download/
15
- Protobuf version 3+
16
instructions:
17
https://github.com/google/protobuf/tree/master/cmake
18
batch:
19
mkdir protobuf
20
cd protobuf
21
mkdir install
22
git clone -b v3.0.0 https://github.com/google/protobuf.git
23
cd protobuf
24
git clone -b release-1.7.0 https://github.com/google/googlemock.git gmock
25
cd gmock
26
git clone -b release-1.7.0 https://github.com/google/googletest.git gtest
27
cd ../cmake
28
mkdir build\release
29
INSIDE VS X64 NATIVE TOOLS COMMAND PROMPT:
30
cmake -G "NMake Makefiles" ^
31
 -DCMAKE_BUILD_TYPE=Release ^
32
 -DCMAKE_INSTALL_PREFIX=../../../../install ^
33
 ../..
34
nmake
35
nmake check
36
nmake install
37
38
- Pokemon go MITM node by Rastpasta on github:
39
git clone https://github.com/rastapasta/pokemon-go-mitm-node.git
40
npm -g install npm@next <---- VERY IMPORTANT (this is the reason why the tutorial took so long to make)
41
42
Phone:
43
--- Android ---
44
if you want to use version 0.31.0+ you need the 'Pokemon Go Xposed' Xposed module from rastapasta. 
45
(it's in the Xposed installer under download confirmed to work, Xposed doesn't work on samsung devices with stock ROM according to their forum)
46
or install the following apk (not tested by me, I'm assuming it's safe since it's suggested on the rastapast github page):
47
https://goo.gl/VH6NiM
48
--- iOS ---
49
There's a .deb package available for jailbroken iOS devices (this has also not been tested by me):
50
https://github.com/ilendemli/trustme/blob/master/packages/info.ilendemli.trustme_0.0.1-1_iphoneos-arm.deb
51
Consult google on how to install .deb with cydia or how to flash the Xposed framework.