Created
April 29, 2020 15:06
-
-
Save sn0opy/964de1ea19d046de226eeb8af86b6b5c to your computer and use it in GitHub Desktop.
proto processing demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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