]> 91.132.146.200 Git - selfpaste.git/commitdiff
message if requested paste was not found
authorBanana <banana@mirage>
Sat, 21 Dec 2019 20:15:37 +0000 (21:15 +0100)
committerBanana <banana@mirage>
Sat, 21 Dec 2019 20:15:37 +0000 (21:15 +0100)
documentation/security.txt
webroot/index.php
webroot/view/view.inc.php

index 1ddae3977fa48448aa0181cc804ff0d363de315d..1cf218bab9a38522df9e38a09fd1faf014f5003f 100644 (file)
@@ -23,4 +23,6 @@ So, here is a friendly REMINDER:
     - Check regularly what is added
     - Clean everything what you do not know
     - You provide the service by hosting it. Your are responsible for it!
-    - Change your secret often
\ No newline at end of file
+    - Change your secret often
+
+Make sure DEBUG is false for production.
\ No newline at end of file
index 7ebb536ed0c7e300d038b5306687187b0e41287e..a390cd4f199c42f9dd4d2fbc861b5547e183be0e 100644 (file)
@@ -64,11 +64,14 @@ $httpResponseCode = 200;
 if(!empty($_short)) {
     $contentType = 'Content-type: text/plain; charset=UTF-8';
     $contentView = 'view';
+    $httpResponseCode = 404;
+    $contentBody = 'File not found.';
 
     $_requestFile = Summoner::createStoragePath($_short);
     $_requestFile .= $_short;
     if(is_readable($_requestFile)) {
         $contentBody = $_requestFile;
+        $httpResponseCode = 200;
     }
 }
 elseif ($_create === true) {
index 38b06de5936c7f38ee072327fa97a8cb2ad931ba..3a85ae50ce8bb174c43bb0d91bfd0293db2df608 100644 (file)
@@ -15,4 +15,7 @@ if (file_exists($contentBody)) {
     header('Pragma: public');
     readfile($contentBody);
     exit;
+}
+else {
+    echo $contentBody;
 }
\ No newline at end of file