Only allow directories for directorylisting

This commit is contained in:
Sebastian Lohff 2012-06-25 20:45:37 +02:00
parent 8a040fbb75
commit 5374315e76
1 changed files with 5 additions and 1 deletions

View File

@ -878,6 +878,10 @@ class ServeFile():
FilePutter.maxUploadSize = self.maxUploadSize
handler = FilePutter
elif self.serveMode == self.MODE_LISTDIR:
if not os.path.exists(self.target):
raise ServeFileException("Error: Could not open file or directory.")
if not os.path.isdir(self.target):
raise ServeFileException("Error: '%s' is not a directory." % (self.target,))
handler = DirListingHandler
handler.targetDir = self.target