首页 > 解决方案 > Google webapps 中的解码参数

问题描述

我试图更好地理解谷歌网络应用程序,HTML 源代码有 JSON,它以某种我想解码的未知方式编码。例如,下面的源包含参数,如 DpimGf、EP1ykd,这是没有意义的

view-source:https://contacts.google.com/
..window.WIZ_global_data = {"DpimGf":false,"EP1ykd":.....

到目前为止,我已经尝试了以下

1. Decoded using the base64 decoder, but results are unprintable/not usable.
2. Decoded using poly-line encoding used in Google Maps.
3. Built an app from scratch to perform base64->binary->XOR->ASCII char and to shift the binary values up-to 7 places [inspired by poly-line algorithm]

是否有来自谷歌的任何文档或此类格式的已知编码。

假设:我很确定这种编码是某种编码而不是加密,因为

1) Length of the encrypted text dont match the common encryption algorithms 
2) There is some sort of pattern with value of the parameters,
   So good chance that its just encoded without any encryption.
   Because common encryption provides completely different strings each time.
3) There is a good chance that they may not decode, 
   because it might have a mapping at server side to a meaningful parameter.

谢谢

标签: htmljsonbase64decode

解决方案


尝试使用这个http://ddecode.com/hexdecoder/?results=cddb95fa500e7c1af427d005985260a7。尝试在其中运行整个事情可能会有所帮助


推荐阅读