[DiscordArchive] What about using the site to generate an encrypted data string and send it over a secure VPN to your
[DiscordArchive] What about using the site to generate an encrypted data string and send it over a secure VPN to your
Archived author: b_man_breal • Posted: 2022-01-01T06:06:33.143000+00:00
Original source
What about using the site to generate an encrypted data string and send it over a secure VPN to your server. On the server use a script to monitor the VPN and validate the files sent to it. Another script can decrypt the file and generate a create user script or other predetermined server commands and run them.
Or is this what SOAP is doing already?
Archived author: exec • Posted: 2022-01-01T06:12:11.545000+00:00
Original source
It's generating a packed time bitfield.
specifically, it's a uint32 in little endien. Assuming you're grabbing that int and naming it 'bits'
year = ((bits >> 24) & 0x1F) + 2000
month = ((bits >> 20) & 0xF) + 1,
day = ((bits >> 14) & 0x3F) + 1
hour = (bits >> 6) & 0x1F
minute = bits & 0x3F
and there is no seconds data
Archived author: exec • Posted: 2022-01-01T06:12:25.920000+00:00
Original source
hopefully that should help
Archived author: exec • Posted: 2022-01-01T06:13:42.163000+00:00
Original source
so for 369111329, that would be Janurary 1st, 2022, at 0433.
Archived author: exec • Posted: 2022-01-01T06:14:44.410000+00:00
Original source
_typically_ a packed time bitfield will correlate to server time local time, not UTC, iirc.
Archived author: exec • Posted: 2022-01-01T06:14:50.713000+00:00
Original source
so keep that in mind too
Archived author: Bogir • Posted: 2022-01-01T07:41:09.911000+00:00
Original source
<@!183704556130009088> Very big Thanks!