The contents of this repo are a proof of concept and are for educational use only
ProtoDecodeUI is a Tool to help analyze incoming and outgoing game data for Pokemon GO.
Note that this repo is designed to be used with yarn and not npm. Doubts see: yarn-setup
Supports Decoding Requests and Response Messages
Default Port: 8081 (seen config file)
Request Route: /debug
Response Route: /raw
Web Interface to View Protos: /
Traffic Route mode /traffic
Golbat Route mode /golbat
Web Interface:
Supports Start/Pause/Clearing of the proto stream
Method Filtering by Whitelisting or Blackisting (whitelist overrides Blacklist)
Both endpoints support the same basic interface supplied by most popular MITM, You must have at least one of the optional parameters as an identifier
interface IncomingData {
uuid?: string
deviceName?: string
devicename?: string
instanceName?: string
contents : [
{
method: number,
data: string
}
]
}
Sent to /traffic
interface CombinedMessage {
rpcid?: number
rpcstatus?: number
rpchandle?: number
protos: [
{
method: number
request: string
response: string
}
]
}
Sent to /golbat
interface CombinedMessage {
username: string
trainerlvl?: number
contents : [
{
type: number
request: string
payload: string
have_ar?: boolean
}
]
}
Node 16 + (Tested on as low as version 16.14.0)
Yarn or NPM package manager
git clone [email protected]:RaizeTheLimit/ProtoDecoderUI.git
cd ./ProtoDecoderUI
Copy and adjust config file
# Copy the config.json file
cp config/example.config.json config/config.json
npm install yarn -g
yarn
yarn build
yarn start
- --=FurtiF™=- for putting in the hard work of supplying Protos with every release ❤️ If you would like to support him and future Proto Updates, please sponsor him on GitHub!