|
地板
发表于
2020-8-26 15:14:59
来自PC端
|
只看该作者
本帖最后由 Mi_2442587632 于 2020-8-26 17:30 编辑
- <string name="OTA_SERVER_EXTERNAL">https://ota-api.blackshark.com/upgrade_check/</string>
- <string name="OTA_SERVER_EXTERNAL_OVERSEA">https://oversea-otaapi.blackshark.com:443/V1/Ota/</string>
- <string name="OTA_SERVER_INTERNAL">https://test-ota-api.blackshark.com/upgrade_check/</string>
- <string name="OTA_SERVER_INTERNAL_OVERSEA">https://oversea-testotaapi.blackshark.com:443/V1/Ota/</string>
复制代码
我知道清单服务器,但没有设备ID似乎无法获取(indicator is null)
我们尚未对设备ID进行任何“Brute-force”索引,因为我们担心它会被服务器阻止。
- curl -LvH "User-Agent: %1$s/%2$s (Linux; Android)" https://test-ota-api.blackshark.com/upgrade_check/
- * Trying 134.175.254.108...
- * TCP_NODELAY set
- * Connected to test-ota-api.blackshark.com (134.175.254.108) port 443 (#0)
- * schannel: SSL/TLS connection with test-ota-api.blackshark.com port 443 (step 1/3)
- * schannel: checking server certificate revocation
- * schannel: sending initial handshake data: sending 198 bytes...
- * schannel: sent initial handshake data: sent 198 bytes
- * schannel: SSL/TLS connection with test-ota-api.blackshark.com port 443 (step 2/3)
- * schannel: failed to receive handshake, need more data
- * schannel: SSL/TLS connection with test-ota-api.blackshark.com port 443 (step 2/3)
- * schannel: encrypted data got 3150
- * schannel: encrypted data buffer: offset 3150 length 4096
- * schannel: sending next handshake data: sending 126 bytes...
- * schannel: SSL/TLS connection with test-ota-api.blackshark.com port 443 (step 2/3)
- * schannel: encrypted data got 274
- * schannel: encrypted data buffer: offset 274 length 4096
- * schannel: SSL/TLS handshake complete
- * schannel: SSL/TLS connection with test-ota-api.blackshark.com port 443 (step 3/3)
- * schannel: stored credential handle in session cache
- > GET /upgrade_check/ HTTP/1.1
- > Host: test-ota-api.blackshark.com
- > Accept: */*
- > User-Agent: %1/%2 (Linux; Android)
- >
- * schannel: client wants to read 102400 bytes
- * schannel: encdata_buffer resized 103424
- * schannel: encrypted data buffer: offset 0 length 103424
- * schannel: encrypted data got 223
- * schannel: encrypted data buffer: offset 223 length 103424
- * schannel: decrypted data length: 194
- * schannel: decrypted data added: 194
- * schannel: decrypted data cached: offset 194 length 102400
- * schannel: encrypted data buffer: offset 0 length 103424
- * schannel: decrypted data buffer: offset 194 length 102400
- * schannel: schannel_recv cleanup
- * schannel: decrypted data returned 194
- * schannel: decrypted data buffer: offset 0 length 102400
- < HTTP/1.1 200 OK
- < Date: Wed, 26 Aug 2020 07:10:00 GMT
- < Content-Type: application/json; charset=utf-8
- < Content-Length: 47
- < Connection: keep-alive
- <
- {"Code":603,"Message":"SIGN_ERROR","Data":null}* Connection #0 to host test-ota-api.blackshark.com left intact
复制代码
|
|