Reply to thread

[USER=119106]@henso[/USER]

Could you make any progress regarding the LiveTv Streaming? :)


Attached are also some screenshots of the new MP2Ext Usermanagement^^ It uses JQuery and calls the MP2Ext APIs so you could create your own management system if you would like to.

I also plan to make the settings changeable from within the settings.


This is how the users are stored inside MP2Ext:


[CODE=XML]

<?xml version="1.0" encoding="utf-8"?>

<Configuration>

  <Property Name="Users">

  <ArrayOfMP2ExtendedUser xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

  <MP2ExtendedUser Id="f5206dd1-1b7e-4d39-b741-e8af2cf95300" Name="admin" PasswordEncrypted="jVlJx++VzXTWjDfsuJ9TZw==" TypeEncrypted="h6MAxFwlpskC36+Qakgvuw==" />

  <MP2ExtendedUser Id="31b9fed9-ff01-4b43-9551-f11dbff0078e" Name="JaneSmith" PasswordEncrypted="X4pGHzJvagYKUl/8HpF29A==" TypeEncrypted="9f9ktftSw1g2+OaI5SB/ZA==" />

  </ArrayOfMP2ExtendedUser>

  </Property>

</Configuration>

[/CODE]


The UserTyper and UserPassword is encrypted (not only base64 xD). If you have multiple users with the same type they will still have different "TypeEncrypted". So you can't make yourself to an admin by just copying the strings over :p

Also the Encryption is tied to the PC. So if you copy the file to another computer you will have a really hard time to decrypt it :ROFLMAO: Useless for MP, but was fun to do so^^


Top Bottom