ThePensionsRegulator.UrlProtection 1.0.2

dotnet add package ThePensionsRegulator.UrlProtection --version 1.0.2
NuGet\Install-Package ThePensionsRegulator.UrlProtection -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ThePensionsRegulator.UrlProtection" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ThePensionsRegulator.UrlProtection --version 1.0.2
#r "nuget: ThePensionsRegulator.UrlProtection, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ThePensionsRegulator.UrlProtection as a Cake Addin
#addin nuget:?package=ThePensionsRegulator.UrlProtection&version=1.0.2

// Install ThePensionsRegulator.UrlProtection as a Cake Tool
#tool nuget:?package=ThePensionsRegulator.UrlProtection&version=1.0.2

Protect a URL from being tampered with

Sometimes changing the path or querystring of a URL could expose private information. For example, if you change the id on a form it might expose the data from another user. To protect against this you can hash the path and querystring with a secret salt, and include that hash in the URL. Checking that the hash still matches when the page is loaded ensures the URL has not been tampered with. The UrlProtector class enables this protection.

Before you redirect to a URL that needs to be protected, call ProtectPathAndQuery on the url.

You need to supply a salt, which should be unique to the resource being protected and is typically stored with that resource.

var redirectToUrl = new Uri("https://hostname/protectme?id=1");
var uniqueSalt = Guid.NewGuid().ToString();
var protector = new UrlProtector(); // in a real application, inject IUrlProtector
protector.ParameterLocation = ParameterLocation.Path // optional, by default the URL is protected using the querystring
protector.PathTemplate = "/my-page/{0}" // only required if ParameterLocation = ParameterLocation.Path
var protectedUrl = protector.ProtectPathAndQuery(redirectToUrl, uniqueSalt);
Response.Headers.Add("Location", protectedUrl.ToString());
Response.StatusCode = 303;

On the next page, before you trust the id parameter in the querystring, check that is has not been tampered with. You'll need to supply the same salt you used to protect the URL:

var protector = new UrlProtector();
var safeUrl = protector.CheckProtectedPathAndQuery(new Uri(Request.GetEncodedUrl()), rememberedUniqueSalt);
if (safeUrl)
{
    // application code here
}
else
{
    Response.StatusCode = 400;
    return;
}

Give URLs an expiry date

Sometimes you want a URL only to work for a limited period of time, perhaps for privacy reasons so that it cannot easily be shared. You can do this by putting a date in the URL, which you check against your deadline in your application code, and then using a hash to verify that the URL has not been tampered with. The UrlExpirer class enables this protection. It uses UrlProtector to protect the querystring from being tampered with.

Before you redirect to a URL that needs to have an expiry date, call ExpireUrl on the url.

var redirectToUrl = new Uri("https://hostname/protectme?id=1");
var uniqueSalt = Guid.NewGuid().ToString();
var expirer = new UrlExpirer(new UrlProtector()); // in a real application, inject IUrlExpirer
expirer.ParameterLocation = ParameterLocation.Path // optional, by default the URL is protected using the querystring
expirer.PathTemplate = "/my-page/{0}" // only required if ParameterLocation = ParameterLocation.Path
var protectedUrl = expirer.ExpireUrl(redirectToUrl, uniqueSalt);
Response.Headers.Add("Location", protectedUrl.ToString());
Response.StatusCode = 303;

On the next page, before you trust the id parameter in the querystring, check that the URL has not expired or been tampered with. This shows a time limit of 1 hour:

var timeLimitInSeconds = 3600;
var expirer = new UrlExpirer(new UrlProtector());
var expired = expirer.HasUrlExpired(new Uri(Request.GetEncodedUrl(), rememberedUniqueSalt, timeLimitInSeconds);
if (!expired)
{
    // application code here
}
else
{
    Response.StatusCode = 400;
    return;
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 663 11/10/2022
1.0.1 346 11/4/2022
1.0.0 339 10/28/2022