Editing PSN Handshake Signup
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
''this page needs cleanup and proper formatting'' | |||
Signup Response | |||
Basic structure of the response | Basic structure of the response | ||
0x00: 4 Byte - main header -> 30 00 00 4f | 0x00: 4 Byte - main header -> 30 00 00 4f | ||
0x04: 4 Byte - size -> 00 5e 00 47 | 0x04: 4 Byte - size -> 00 5e 00 47 | ||
Line 13: | Line 13: | ||
0x26: 6 Byte - np: 00 01 00 00 00 sp-int: 00 01 00 00 00 23 | 0x26: 6 Byte - np: 00 01 00 00 00 sp-int: 00 01 00 00 00 23 | ||
0x2a: 4 Byte - {10 5d 00 0b} 0x000b - size of email | 0x2a: 4 Byte - {10 5d 00 0b} 0x000b - size of email | ||
0x2e: x Byte - email, here 0b in size | 0x2e: x Byte - email, here 0b in size | ||
Legend | Legend | ||
Main Header xx xx xx ss ss = size | Main Header xx xx xx ss ss = size | ||
Positive Auth | |||
Auth Reply Structure | Auth Reply Structure | ||
0x00: 4 Byte - main header -> 31 00 00 00 | 0x00: 4 Byte - main header -> 31 00 00 00 | ||
0x04: 4 Byte - size -> 00 00 00 d4 | 0x04: 4 Byte - size -> 00 00 00 d4 | ||
Line 53: | Line 53: | ||
0xc4: 4 Byte - {00 08 00 14} | 0xc4: 4 Byte - {00 08 00 14} | ||
0xc8: 20 Byte - SIGNATURE -> maybe HMAC/SHA1 | 0xc8: 20 Byte - SIGNATURE -> maybe HMAC/SHA1 | ||
* | * often found before Name/Handle, assigned at signup and store at first 8 byte of cache | ||
* * | * * seems to be the same for the same for every console, differs for others | ||
Size | Size | ||
Line 72: | Line 72: | ||
ss = data size in hex | ss = data size in hex | ||
Timestamps | |||
These are Timestamp: | These are Timestamp: | ||
X = 00 00 01 2f 31 ff a0 58h -> 1302213927000d | |||
The X / 1000 = seconds since 1970, so this date is 08.04.2011 | The X / 1000 = seconds since 1970, so this date is 08.04.2011 | ||
PHP to easy recheck: | PHP to easy recheck: | ||
$timestamp = 1302010662000 / 1000; | |||
date("d.m.Y",$timestamp); | date("d.m.Y",$timestamp); | ||
It's just Miliseconds. | It's just Miliseconds. | ||