-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restrict path traversal on FastZip extraction (#235)
Fixes #232 - Prevent traversal outside of extraction directory - Add new explicit exception for invalid names - Add tests for extraction path traversal Note: Use new parameter `allowParentTraversal` to re-enable past behaviour
- Loading branch information
Showing
4 changed files
with
139 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace ICSharpCode.SharpZipLib.Core | ||
{ | ||
|
||
/// <summary> | ||
/// InvalidNameException is thrown for invalid names such as directory traversal paths and names with invalid characters | ||
/// </summary> | ||
public class InvalidNameException: SharpZipBaseException | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the InvalidNameException class with a default error message. | ||
/// </summary> | ||
public InvalidNameException(): base("An invalid name was specified") | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the InvalidNameException class with a specified error message. | ||
/// </summary> | ||
/// <param name="message">A message describing the exception.</param> | ||
public InvalidNameException(string message) : base(message) | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the InvalidNameException class with a specified | ||
/// error message and a reference to the inner exception that is the cause of this exception. | ||
/// </summary> | ||
/// <param name="message">A message describing the exception.</param> | ||
/// <param name="innerException">The inner exception</param> | ||
public InvalidNameException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters