The iPhone Wiki is no longer updated. Visit this article on The Apple Wiki for current information. |
Difference between revisions of "Tatsu Signing Server"
(Nevermind, looks like this may be possible) |
m (The IP is unreachable because it is private. Likely meant for Apple’s VPN) |
||
Line 113: | Line 113: | ||
====getReceiptPacketStatus==== |
====getReceiptPacketStatus==== |
||
− | Returns two unknown numbers, |
+ | Returns two unknown numbers, a [https://en.m.wikipedia.org/wiki/Reserved_IP_addresses private IP address] (likely meant to be accessed within Apple’s internal VPN), and some <code>multiRef</code> tags (how are these supposed to be parsed?). |
* '''Input Message''' (<code>getReceiptPacketStatusRequest</code>) |
* '''Input Message''' (<code>getReceiptPacketStatusRequest</code>) |
||
Line 140: | Line 140: | ||
== Notes == |
== Notes == |
||
− | [https://www.soapui.org SoapUI], |
+ | [https://www.soapui.org SoapUI], a test automation framework for the SOAP protocol, lists Apple among their largest users [https://www.soapui.org/downloads/download-soapui-pro-trial.html]. |
===Server Details=== |
===Server Details=== |
Revision as of 05:13, 18 February 2020
The Tatsu Signing Server (TSS) is a collection of services provided by Apple. In late 2012, the list of available services was briefly made public at gs.apple.com. This index page has since been removed, although at least one archived capture exists. TSS is accessed chiefly for use of the SHSH Protocol to receive signed blobs for a given iOS build. This is achieved with the SHSH controller at http://gs.apple.com/TSS/controller.
There is an Apple internal equivalent, known as SpiderCab, running at tatsu-tss-internal.apple.com and tss-int.apple.com, which are only accessible within Apple's VPN. SpiderCab is used to sign internal/debug and test builds of iOS, including old versions that are no longer signed on production.
Reliable communication to the TSS server requires the appropriate HTTP header, as described in SHSH Protocol#Communication. If you are communicating with a TSS service and not the SHSH controller itself, you must additionally provide a SOAPAction:
header containing the URL of the service you are accessing. Also note that not all TSS servers accept SOAP requests. Because http://gs.apple.com automatically resolves to one of the half-a-dozen TSS servers, some of which indiscriminately returning "403 Forbidden" to SOAP, it is recommended to communicate directly with a known-working TSS IP address.
Contents
Services
There are two services provided, both accessible via SOAP requests. They are located in http://gs.apple.com/TSS/services/ under their respective names. A sample request concerning "getReceiptPacketStatus" from the "tatsuReceiptsStatusPort" service is demonstrated below:
> POST /TSS/services/tatsuReceiptsStatusPort HTTP/1.1 > Host: gs.apple.com > User-Agent: InetURL/1.0 > Accept: */* > Content-Length: 588 > Content-Type: text/xml;charset=utf-8 > SOAPAction: http://gs.apple.com/TSS/services/tatsuReceiptsStatusPort
SOAP XML:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns1:getReceiptPacketStatus
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1="http://gs.apple.com/TSS/services/tatsuReceiptsStatusPort">
<ns1:param0
xsi:type="ns2:ReceiptDataPacketStatusRequest"
xmlns:ns2="http://receiptsstatus.web.tss.apple.com">
<ns2:status>1
</ns2:status>
</ns1:param0>
</ns1:getReceiptPacketStatus>
</soapenv:Body>
</soapenv:Envelope>
Response:
<?xml version="1.0" encoding="utf-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <ns1:getReceiptPacketStatusResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://gs.apple.com/TSS/services/tatsuReceiptsStatusPort"> <param1 href="#id0"/> </ns1:getReceiptPacketStatusResponse> <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:ReceiptDataPacketStatusResponse" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://receiptsstatus.web.tss.apple.com"> <batchIdhref="#id1"/> <status href="#id2"/> <ip xsi:type="xsd:string">10.108.105.161</ip> </multiRef> <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:long" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> 0 </multiRef> <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns3:status" xmlns:ns3="http://receiptsstatus.web.tss.apple.com" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> <code href="#id3"/> <desc xsi:type="xsd:string"></desc> </multiRef> <multiRef id="id3" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"> 3 </multiRef> </soapenv:Body> </soapenv:Envelope>
This type of SOAP request/response can be performed with a cURL request, like so (where soap.xml
is the location of the aforementioned SOAP XML):
curl -i -m 1.0 -H "Content-Type: text/xml;charset=utf-8" -A InetURL/1.0 -H "SOAPAction: http://gs.apple.com/TSS/services/tatsuReceiptsStatusPort" -H "Host: gs.apple.com" -d @soap.xml http://gs.apple.com/TSS/services/tatsuReceiptsStatusPort
Note: The server may occasionally return java.lang.NullPointerException
despite a valid response. Retrying the request will likely remedy this. Is this a race condition bug on the server side?
PacketPort
pushDataPacket
- Input Message (
pushDataPacketRequest
) - Output Message (
pushDataPacketResponse
)
tatsuReceiptsStatusPort
getReceiptPacketStatus
Returns two unknown numbers, a private IP address (likely meant to be accessed within Apple’s internal VPN), and some multiRef
tags (how are these supposed to be parsed?).
- Input Message (
getReceiptPacketStatusRequest
)param0
: (type=ReceiptDataPacketStatusRequest
)- Elements:
code
(Number)
- Elements:
- Output Message (
getReceiptPacketStatusResponse
)param1
: (type=ReceiptDataPacketStatusResponse
)- Elements:
status
,ip
(String),code
,desc
(String)
- Elements:
queryTASExpireTSA
- Input Message (
queryTASExpireTSARequest
)param2
: (type=ExpireTSAQueryRequest
)- Elements:
tsa
(Number)
- Elements:
- Output Message (
queryTASExpireTSAResponse
)param3
: (type=ExpireTSAQueryResponse
)
updateTSSStatus
- Input Message (
updateTSSStatusRequest
)param4
: (type=status
)
- Output Message (
updateTSSStatusResponse
)param5
: (type=status
)- Elements:
status
(Number)
- Elements:
Notes
SoapUI, a test automation framework for the SOAP protocol, lists Apple among their largest users [1].
Server Details
It is of moderate security concern to know that the TSS server runs Apache Tomcat, which is exposed, alongside version number, in the default 404 page. The SOAP implementation used is Apache Axis (Java).