TheLord45 / amxpanel

Emulator for AMX panels
GNU General Public License v3.0
13 stars 1 forks source link

Remove table with unique browser IDs #51

Closed TheLord45 closed 4 years ago

TheLord45 commented 5 years ago

There exists a table which contains unique browser IDs, created by a browser, to identify a device and grant access. As a first try, this table was created to have the possibility to identify a device and grant access only to those devices, who where registered in this table before. Because this could also be used to track a user, the browser maintainers are removing this possibility from their browsers. Therefore a new method was needed.

Currently this table is still there and works. It should be removed. The following parts must be removed:

In the Javascript amxpanel.js in the function getRegistrationID is also code to generate a unique ID out of the current date and time. This code should remain there. It will still be needed to interact with the daemon amxpanel on the server.

TheLord45 commented 5 years ago

The function getRegistrationID() now generates an ID. Every time it is called, a new ID is generated.

TheLord45 commented 4 years ago

Table was removed.