WallyCZ

Results 16 comments of WallyCZ

Argh, interesting :D They probably does not check everything yet

No, GetMapsObject returned all - really :) But nevermind, I took your fix and its ok

The biggest problem is, that this structure probably does not match iOS Activity API (see newer protos, they reverted it to [unknown](https://github.com/pogodevorg/POGOProtos/blob/pogodev-develop/src/POGOProtos/Networking/Envelopes/SignalAgglomUpdates.proto#L51)). I have some dumps, where stationary flag is...

I have noticed, that Android variant has this code: https://github.com/xbmc/inputstream.adaptive/blob/b221fcb2461b74ce6f612722833a7e63d63ee404/src/decrypters/widevineandroid/WVCdmAdapter.cpp#L169 But I think it's only executed when cert is provided via file and not via inputstream.adaptive.server_certificate argument. Can't find a...

Btw. I added some logging to cdm_adaper.cc: ```c++ void CdmAdapter::SetServerCertificate(uint32_t promise_id, const uint8_t* server_certificate_data, uint32_t server_certificate_data_size) { if (server_certificate_data_size < limits::kMinCertificateLength || server_certificate_data_size > limits::kMaxCertificateLength) { return; } Log(LogLevel::DEBUG, "SetServerCertificate:...

@CastagnaIT Are you sure about this? Isn't license request signed by the CDM so it can't be modified? I have read this analysis of the older WV-CDM version - https://github.com/tomer8007/widevine-l3-decryptor/wiki/Reversing-the-old-Widevine-Content-Decryption-Module...