From f5020255464da800920760bb5bf8d3fc4a1513ad Mon Sep 17 00:00:00 2001 From: owen bell Date: Sun, 8 Nov 2020 21:23:50 -0500 Subject: [PATCH] Create u.php --- u.php | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 u.php diff --git a/u.php b/u.php new file mode 100644 index 0000000..96e5e2e --- /dev/null +++ b/u.php @@ -0,0 +1,108 @@ + 6*3600) + { + unlink($target_dir . $file); + } + + } + + closedir($handle); +} + + +$target_file = $target_dir . basename($_FILES["file"]["name"]); +$uploadOk = 0; +$fileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION)); +if ($fileType == '') { + $fileType = 'txt'; +} +$target_file = $target_dir . substr(md5_file($_FILES['file']['tmp_name']), 1, 6) . "." . $fileType; + +if (file_exists($_FILES["file"]['tmp_name'])) { + $uploadOk = 1; +} + +// Check if file already exists +if (file_exists($target_file)) { + //echo "Whoops! someone already uploaded that, " . $target_file; + $uploadOk = 0; +} +// Check file size +if ($_FILES["file"]["size"] > 600000000) { + //echo "Sorry, your file is too large. (maximum size allowed 6mb)"; + $uploadOk = 0; +} + +// Check if $uploadOk is set to 0 by an error +if ($uploadOk == 0) { + //echo "Sorry, your file was not uploaded for an unknown reason."; +// if everything is ok, try to upload file +} else { + if (move_uploaded_file($_FILES["file"]["tmp_name"], $target_file)) { + echo "https://" . $_SERVER['HTTP_HOST'] . "/" . $target_file; + exit; + } else { + echo "Sorry, there was an error uploading your file."; + } +} + + +?> + + + + + xfnw's upload thing + + + + + +

xfnw's upload thing

+

files are regularly automatically deleted, and will probably be gone in 6 hours if not sooner

+ +
+# upload function
+upload(){ curl -F"file=@$1" https://xfnw.ttm.sh/u.php }
+upload file.png
+
+# paste function
+paste(){ curl -F"file=@-" https://xfnw.ttm.sh/u.php }
+cat something.txt | paste
+
+ +

or

+ +
+ +
+ + + + +