From 3eddc5f93efdebb68448e42a17c5c1421032d091 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 6 Mar 2022 22:12:07 +0400 Subject: [PATCH] Some minor paraphrasings. --- internal/handlers/web/templates/index.jade | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/internal/handlers/web/templates/index.jade b/internal/handlers/web/templates/index.jade index 22a1cfe..d8fb5e6 100644 --- a/internal/handlers/web/templates/index.jade +++ b/internal/handlers/web/templates/index.jade @@ -20,13 +20,12 @@ block body input(type="file" name="file" multiple=false) button(type="submit") Upload section - p.center You can use curl to upload a file: #[code curl -X POST -F 'file=@somefile.ext' https://upload.arav.top/]. - p.center A resulted link looks like this /f/base64rawURL(sha256)/filename.ext. + p.center You can use cURL to upload a file: #[code curl -X POST -F 'file=@somefile.ext' https://upload.arav.top/]. + p.center A resulted link looks like this: #[code /f/base64rawURL(sha256)/filename.ext]. p.center filename.ext could be anything but empty. It is a name the file will be retrieved with. section h2 Privacy statements p I WILL cooperate with law enforcements and provide them with logs. Abuses should be sent to #[a(href="mailto:admin@arav.top") admin@arav.top]. p Upload logs include: access time, IP-address, name of a file it was uploaded with, a SHA-256 hash of the file, download name*, size of the file in bytes, User-Agent. p Each download also being logged and include: access time, IP-address, name of a file it was requested with, download name*, User-Agent. - p *Download name is a salted SHA-256 hash of the file encoded using base64 raw URL encoding. - p It was decided to salt the hash to make useless any attempt on bruteforcing. \ No newline at end of file + p *Download name is a salted SHA-256 hash of the file encoded using base64 raw URL encoding. The hash is being salted to make useless any attempt of bruteforcing. \ No newline at end of file