mirror of
https://gitlab.com/niansa/simpsh-httpd.git
synced 2025-03-06 20:53:36 +01:00
15 lines
275 B
Bash
15 lines
275 B
Bash
#! /bin/bash
|
|
|
|
# Blockiere Versuche, das restliche Dateisystem zu lesen
|
|
if [[ "$URL" == *..* ]]; then
|
|
export URL='/'
|
|
export FILE="$FILES"
|
|
fi
|
|
|
|
# Verhindere "/"-bug
|
|
if [ -d "$FILE" ]; then
|
|
newURL="$URL"'/'
|
|
export URL="$newURL"
|
|
newFILE="$FILE"'/'
|
|
export FILE="$newFILE"
|
|
fi
|