Skip to content

Instantly share code, notes, and snippets.

@sn0opy
Created April 29, 2020 15:06
Show Gist options
  • Save sn0opy/964de1ea19d046de226eeb8af86b6b5c to your computer and use it in GitHub Desktop.
Save sn0opy/964de1ea19d046de226eeb8af86b6b5c to your computer and use it in GitHub Desktop.
proto processing demo
from mapadroid.mitm_receiver.MITMDataProcessor import MitmDataProcessor
type = 4
payload = "CAESDgjptIDBmy4Q6bSAwZsu"
data = MitmDataProcessor.raw_decoder(type, payload)
if data is None:
print("Type not supported")
else:
print(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment