├── .gitignore ├── Pipfile ├── Pipfile.lock ├── Readme.md ├── classes └── protos │ ├── Statistics_pb2.py │ ├── download_install_state_pb2.py │ ├── download_pb2.py │ ├── ownership_cache_pb2.py │ └── uplay_service_pb2.py ├── compare.py ├── compare_out.txt ├── download.py ├── files ├── Files.md ├── ownership.bin ├── ownership.json ├── wd1_manifest.typedef.json ├── wd1_uplay_install.manifest ├── wd1_uplay_install.manifest.json ├── wd1_uplay_install.manifest.pb ├── wd1_uplay_install.manifest.pb.parsed ├── wdl_manifest.typedef.json ├── wdl_uplay_install.manifest ├── wdl_uplay_install.manifest.json ├── wdl_uplay_install.manifest.pb └── wdl_uplay_install.manifest.pb.parsed ├── hex_convert.py ├── notes.txt ├── protos ├── OrbitDll.proto ├── Statistics.proto ├── Uplay.proto ├── UplayAuxDll.proto ├── UplayDll.proto ├── channel.proto ├── chat_message_data.proto ├── client_configuration.proto ├── cloudsave_service.proto ├── club_cache.proto ├── configuration.proto ├── control_panel.proto ├── conversations_cache.proto ├── crash_reporter.proto ├── demux.proto ├── denuvo_service.proto ├── download.proto ├── download_cache.proto ├── download_install_state.proto ├── download_service.proto ├── filesystem_blob.proto ├── friends.proto ├── game_activations_cache.proto ├── game_starter.proto ├── game_stats_cache.proto ├── installation_backup.proto ├── new_channel.proto ├── offline.proto ├── overlay.proto ├── ownership.proto ├── ownership_cache.proto ├── party.proto ├── pcbang.proto ├── playtime.proto ├── playtime_cache.proto ├── recently_played.proto ├── settings.proto ├── steam_service.proto ├── store.proto ├── uplay_protocol.proto ├── uplay_service.proto ├── user_login_cache.proto ├── user_settings.proto ├── utility.proto └── wegame_service.proto ├── run.py └── versions ├── uplay_install.manifest.1.0.00 ├── uplay_install.manifest.1.0.10 ├── uplay_install.manifest.1.1.00 ├── uplay_install.manifest.1.2.00 ├── uplay_install.manifest.1.2.20 ├── uplay_install.manifest.1.2.30 ├── uplay_install.manifest.1.2.40 ├── uplay_install.manifest.1.3.00 ├── uplay_install.manifest.1.3.22 ├── uplay_install.manifest.1.3.25 ├── uplay_install.manifest.1.3.30 ├── uplay_install.manifest.1.4.00 └── uplay_install.manifest.1.4.02 /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | output.typedef.json 3 | node_modules -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/Readme.md -------------------------------------------------------------------------------- /classes/protos/Statistics_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/classes/protos/Statistics_pb2.py -------------------------------------------------------------------------------- /classes/protos/download_install_state_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/classes/protos/download_install_state_pb2.py -------------------------------------------------------------------------------- /classes/protos/download_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/classes/protos/download_pb2.py -------------------------------------------------------------------------------- /classes/protos/ownership_cache_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/classes/protos/ownership_cache_pb2.py -------------------------------------------------------------------------------- /classes/protos/uplay_service_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/classes/protos/uplay_service_pb2.py -------------------------------------------------------------------------------- /compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/compare.py -------------------------------------------------------------------------------- /compare_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/compare_out.txt -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/download.py -------------------------------------------------------------------------------- /files/Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/Files.md -------------------------------------------------------------------------------- /files/ownership.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/ownership.bin -------------------------------------------------------------------------------- /files/ownership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/ownership.json -------------------------------------------------------------------------------- /files/wd1_manifest.typedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wd1_manifest.typedef.json -------------------------------------------------------------------------------- /files/wd1_uplay_install.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wd1_uplay_install.manifest -------------------------------------------------------------------------------- /files/wd1_uplay_install.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wd1_uplay_install.manifest.json -------------------------------------------------------------------------------- /files/wd1_uplay_install.manifest.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wd1_uplay_install.manifest.pb -------------------------------------------------------------------------------- /files/wd1_uplay_install.manifest.pb.parsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wd1_uplay_install.manifest.pb.parsed -------------------------------------------------------------------------------- /files/wdl_manifest.typedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wdl_manifest.typedef.json -------------------------------------------------------------------------------- /files/wdl_uplay_install.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wdl_uplay_install.manifest -------------------------------------------------------------------------------- /files/wdl_uplay_install.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wdl_uplay_install.manifest.json -------------------------------------------------------------------------------- /files/wdl_uplay_install.manifest.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wdl_uplay_install.manifest.pb -------------------------------------------------------------------------------- /files/wdl_uplay_install.manifest.pb.parsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/files/wdl_uplay_install.manifest.pb.parsed -------------------------------------------------------------------------------- /hex_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/hex_convert.py -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/notes.txt -------------------------------------------------------------------------------- /protos/OrbitDll.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/OrbitDll.proto -------------------------------------------------------------------------------- /protos/Statistics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/Statistics.proto -------------------------------------------------------------------------------- /protos/Uplay.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/Uplay.proto -------------------------------------------------------------------------------- /protos/UplayAuxDll.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/UplayAuxDll.proto -------------------------------------------------------------------------------- /protos/UplayDll.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/UplayDll.proto -------------------------------------------------------------------------------- /protos/channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/channel.proto -------------------------------------------------------------------------------- /protos/chat_message_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/chat_message_data.proto -------------------------------------------------------------------------------- /protos/client_configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/client_configuration.proto -------------------------------------------------------------------------------- /protos/cloudsave_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/cloudsave_service.proto -------------------------------------------------------------------------------- /protos/club_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/club_cache.proto -------------------------------------------------------------------------------- /protos/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/configuration.proto -------------------------------------------------------------------------------- /protos/control_panel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/control_panel.proto -------------------------------------------------------------------------------- /protos/conversations_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/conversations_cache.proto -------------------------------------------------------------------------------- /protos/crash_reporter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/crash_reporter.proto -------------------------------------------------------------------------------- /protos/demux.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/demux.proto -------------------------------------------------------------------------------- /protos/denuvo_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/denuvo_service.proto -------------------------------------------------------------------------------- /protos/download.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/download.proto -------------------------------------------------------------------------------- /protos/download_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/download_cache.proto -------------------------------------------------------------------------------- /protos/download_install_state.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/download_install_state.proto -------------------------------------------------------------------------------- /protos/download_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/download_service.proto -------------------------------------------------------------------------------- /protos/filesystem_blob.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/filesystem_blob.proto -------------------------------------------------------------------------------- /protos/friends.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/friends.proto -------------------------------------------------------------------------------- /protos/game_activations_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/game_activations_cache.proto -------------------------------------------------------------------------------- /protos/game_starter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/game_starter.proto -------------------------------------------------------------------------------- /protos/game_stats_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/game_stats_cache.proto -------------------------------------------------------------------------------- /protos/installation_backup.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/installation_backup.proto -------------------------------------------------------------------------------- /protos/new_channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/new_channel.proto -------------------------------------------------------------------------------- /protos/offline.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/offline.proto -------------------------------------------------------------------------------- /protos/overlay.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/overlay.proto -------------------------------------------------------------------------------- /protos/ownership.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/ownership.proto -------------------------------------------------------------------------------- /protos/ownership_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/ownership_cache.proto -------------------------------------------------------------------------------- /protos/party.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/party.proto -------------------------------------------------------------------------------- /protos/pcbang.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/pcbang.proto -------------------------------------------------------------------------------- /protos/playtime.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/playtime.proto -------------------------------------------------------------------------------- /protos/playtime_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/playtime_cache.proto -------------------------------------------------------------------------------- /protos/recently_played.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/recently_played.proto -------------------------------------------------------------------------------- /protos/settings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/settings.proto -------------------------------------------------------------------------------- /protos/steam_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/steam_service.proto -------------------------------------------------------------------------------- /protos/store.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/store.proto -------------------------------------------------------------------------------- /protos/uplay_protocol.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/uplay_protocol.proto -------------------------------------------------------------------------------- /protos/uplay_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/uplay_service.proto -------------------------------------------------------------------------------- /protos/user_login_cache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/user_login_cache.proto -------------------------------------------------------------------------------- /protos/user_settings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/user_settings.proto -------------------------------------------------------------------------------- /protos/utility.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/utility.proto -------------------------------------------------------------------------------- /protos/wegame_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/protos/wegame_service.proto -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/run.py -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.0.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.0.00 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.0.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.0.10 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.1.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.1.00 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.2.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.2.00 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.2.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.2.20 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.2.30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.2.30 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.2.40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.2.40 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.3.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.3.00 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.3.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.3.22 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.3.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.3.25 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.3.30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.3.30 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.4.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.4.00 -------------------------------------------------------------------------------- /versions/uplay_install.manifest.1.4.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoobieRE/uplay-install-reverse/HEAD/versions/uplay_install.manifest.1.4.02 --------------------------------------------------------------------------------