Remotely/Remotely_Server/Pages/Privacy.cshtml
2021-07-29 07:53:41 -07:00

40 lines
2.0 KiB
Plaintext

@page
@model PrivacyModel
@{
ViewData["Title"] = "Privacy Policy";
}
<h2>@ViewData["Title"]</h2>
<div class="row">
<div class="col-md-6 mb-3">
<h4>Cookies and Tracking</h4>
<div>
Put simply, Remotely doesn't use any cookies for tracking or gathering personal data.
It's built using only standard ASP.NET Core libraries from Microsoft. The only
cookies used are part of Microsoft's Identity framework and are necessary for providing
secure login functionality.
<br /><br />
The web server logs access information, including IP addresses, of people who access the site.
This logging behavior is typical of web servers, and the information they contain is only
used for diagnostic purposes when needed. No personally identifiable information is gathered.
</div>
</div>
<div class="col-md-6 mb-3">
<h4>Data Handling and Privacy Protection</h4>
<div>
The Remotely server uses Microsoft's Identity system for handling authentication. User accounts
and passwords are handled by Microsoft's code libraries that are built into ASP.NET Core.
<br /><br />
Identity does not save passwords on the server. They are obscured in a way that cannot
be reversed, but can only be used to determine if subsequent login attempts are the same
as the original password used to create the account. The password itself cannot be
retrieved, though.
<br /><br />
You can learn more about Identity on <a href="https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity?view=aspnetcore-2.2">Microsoft Docs.</a>
<br /><br />
Data pertaining to computers using the Remotely service is only kept for three months, then it
is permanently deleted. No information about the computers, commands sent, or results are
kept permanently.
</div>
</div>
</div>