-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d123182
commit 295ff65
Showing
2 changed files
with
88 additions
and
35 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
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,37 @@ | ||
package api | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"path/filepath" | ||
) | ||
|
||
func inTrustedRoot(path string, trustedRoot string) error { | ||
for path != "/" { | ||
path = filepath.Dir(path) | ||
if path == trustedRoot { | ||
return nil | ||
} | ||
} | ||
return errors.New("path is outside of trusted root") | ||
} | ||
|
||
func verifyPath(path string, trustedRoot string) (string, error) { | ||
|
||
c := filepath.Clean(path) | ||
fmt.Println("Cleaned path: " + c) | ||
|
||
r, err := filepath.EvalSymlinks(c) | ||
if err != nil { | ||
fmt.Println("Error " + err.Error()) | ||
return c, errors.New("Unsafe or invalid path specified") | ||
} | ||
|
||
err = inTrustedRoot(r, trustedRoot) | ||
if err != nil { | ||
fmt.Println("Error " + err.Error()) | ||
return r, errors.New("Unsafe or invalid path specified") | ||
} else { | ||
return r, nil | ||
} | ||
} |