Skip to content

Instantly share code, notes, and snippets.

@ukcoderj
Last active March 25, 2021 05:07
Show Gist options
  • Save ukcoderj/9804214d3c2debe4f000e115c258e505 to your computer and use it in GitHub Desktop.
Save ukcoderj/9804214d3c2debe4f000e115c258e505 to your computer and use it in GitHub Desktop.
C# Helper To See If There Is A Directory Traversal Attempt on a File
/// <summary>
/// This is to guage whether someone is trying a directory traversal attack.
/// I.e. they should be requesting 'somefilename.pdf'
/// but they request '../anotherlocation/someotherfilename.pdf
/// </summary>
/// <param name="fileName">The file name to check</param>
/// <returns></returns>
public bool IsDirectoryTraversing(string fileName)
{
bool isTraversing = false;
if(String.IsNullOrWhiteSpace(fileName))
{
return isTraversing;
}
// Url decode to reveal sneaky encoded attempts e.g. '%2f' (/) or '%2e%2e%2f' (../)
var decodedFileName = HttpUtility.UrlDecode(fileName);
if(decodedFileName.Contains("/") ||
decodedFileName.Contains(@"\") ||
decodedFileName.Contains("$") ||
decodedFileName.Contains("..") ||
decodedFileName.Contains("?"))
{
isTraversing = true;
}
return isTraversing;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment