Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- The following are the requirements for setting up Rastpasta's mitm node for Pokemon go on windows.
- PC:
- - A 64-bit Windows installation
- - Microsoft visual Studio (2015 recommended but older will probably work):
- https://www.visualstudio.com/downloads/download-visual-studio-vs
- - Python (tested with 2.7) ---select add to PATH during installation!!!
- https://www.python.org/ftp/python/2.7.12/python-2.7.12.msi
- - Node.JS with npm (current and 4.4.7 should both work)
- https://nodejs.org/en/
- - Git (link below or install with visual studio)
- https://git-scm.com/download/win
- - CMAKE (64-bit installer)
- https://cmake.org/download/
- - Protobuf version 3+
- instructions:
- https://github.com/google/protobuf/tree/master/cmake
- batch:
- mkdir protobuf
- cd protobuf
- mkdir install
- git clone -b v3.0.0 https://github.com/google/protobuf.git
- cd protobuf
- git clone -b release-1.7.0 https://github.com/google/googlemock.git gmock
- cd gmock
- git clone -b release-1.7.0 https://github.com/google/googletest.git gtest
- cd ../cmake
- mkdir build\release
- INSIDE VS X64 NATIVE TOOLS COMMAND PROMPT:
- cmake -G "NMake Makefiles" ^
- -DCMAKE_BUILD_TYPE=Release ^
- -DCMAKE_INSTALL_PREFIX=../../../../install ^
- ../..
- nmake
- nmake check
- nmake install
- - Pokemon go MITM node by Rastpasta on github:
- git clone https://github.com/rastapasta/pokemon-go-mitm-node.git
- npm -g install npm@next <---- VERY IMPORTANT (this is the reason why the tutorial took so long to make)
- Phone:
- --- Android ---
- if you want to use version 0.31.0+ you need the 'Pokemon Go Xposed' Xposed module from rastapasta.
- (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)
- or install the following apk (not tested by me, I'm assuming it's safe since it's suggested on the rastapast github page):
- https://goo.gl/VH6NiM
- --- iOS ---
- There's a .deb package available for jailbroken iOS devices (this has also not been tested by me):
- https://github.com/ilendemli/trustme/blob/master/packages/info.ilendemli.trustme_0.0.1-1_iphoneos-arm.deb
- Consult google on how to install .deb with cydia or how to flash the Xposed framework.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement