kelvl / mitmdump_decoder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

Requires mitmproxy, protobuf

$ mitmdump -p 8888 -s decode.py "~d pgorelease.nianticlabs.com"

Rebuild python classes

Linux

cd idl; ls -1 *.proto | while read filename; do protoc --python_out ../protocol/ $filename; done

Windows

cd idl; ls *.proto | ForEach-Object { Invoke-Expression "protoc --proto_path '$($_.DirectoryName)' --python_out ../protocol/ '$($_.FullName)'" }

Rebuild descriptors

Windows

cd idl; ls *.proto | ForEach-Object { Invoke-Expression "protoc --proto_path '$($_.DirectoryName)' -o ../descriptors/$($_.Name).desc '$($_.FullName)'" }

About


Languages

Language:Protocol Buffer 49.1%Language:Python 44.3%Language:HTML 6.6%