From dc9d465d54c8e8616a6cee7a2a065a284f265ee3 Mon Sep 17 00:00:00 2001 From: Alexander Lehmann Date: Sat, 11 Nov 2023 13:25:34 +0100 Subject: [PATCH] add option to use a longer ID length --- index.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index 12f1578..ce63631 100755 --- a/index.php +++ b/index.php @@ -8,6 +8,7 @@ class CONFIG const UPLOAD_TIMEOUT = 5*60; //max. time an upload can take before it times out const ID_LENGTH = 3; //length of the random file ID + const ID_LENGTH_SECRET = 24; //length of the random file ID for "secret", set to ID_LENGTH to disable const STORE_PATH = 'files/'; //directory to store uploaded files in const LOG_PATH = null; //path to log uploads + resulting links to const DOWNLOAD_PATH = '%s'; //the path part of the download url. %s = placeholder for filename @@ -125,7 +126,13 @@ function store_file(string $name, string $tmpfile, bool $formatted = false) : vo } $ext = substr($ext, 0, CONFIG::MAX_EXT_LEN); $tries_per_len=3; //try random names a few times before upping the length - for ($len = CONFIG::ID_LENGTH; ; ++$len) + + $id_length=CONFIG::ID_LENGTH; + if(isset($_POST['secret'])) { + $id_length=CONFIG::ID_LENGTH_SECRET; + } + + for ($len = $id_length; ; ++$len) { for ($n=0; $n<=$tries_per_len; ++$n) { @@ -289,6 +296,7 @@ function print_index() : void $max_size = CONFIG::MAX_FILESIZE; $max_age = CONFIG::MAX_FILEAGE; $mail = CONFIG::ADMIN_EMAIL; + $id_length_secret = CONFIG::ID_LENGTH_SECRET; echo <<ShareX and import this custom uploader. On Android, you can use an app called Hupl with this uploader.