From c9608fc107627cd73cf2fd05de7e2b4241e6f6f0 Mon Sep 17 00:00:00 2001 From: BradBot_1 Date: Sun, 28 Jan 2024 20:23:27 +0000 Subject: [PATCH] init --- .dockerignore | 5 +++++ Dockerfile | 3 +++ LICENSE | 9 ++++++++ README.md | 44 ++++++++++++++++++++++++++++++++++++++ httpd.conf | 2 ++ index.html | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 122 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile create mode 100644 LICENSE create mode 100644 README.md create mode 100644 httpd.conf create mode 100644 index.html diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..477445a --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +Dockerfile +.dockerignore +LICENSE +README.md +.git/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..46edb69 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM lipanski/docker-static-website:latest + +COPY . . \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3d446ea --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright © 2024 BradBot_1#2042 + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..21d3505 --- /dev/null +++ b/README.md @@ -0,0 +1,44 @@ +# Clipboard + +A simple static HTTP site that applies a provided string to the users clipboard + +## How to use + +Send the user to a hosted version of index.html with the text to be applied as the parameter + +### Parsing Flags + +There are three prefixes that can be used to customise the parsing of the url: + +1. u +2. b +3. r + +#### u - URI + +Decodes URI encoded characters via the `decodeURI()` function + + +The following results in the text `copy this` being placed upon the clipboard: +``` +https://example.com?u=copy%20this +``` + +#### b - Base64 + +Decodes the base64 encoded characters via the `atob()` function + +The following results in the text `copy this` being placed upon the clipboard: +``` +https://example.com?b=Y29weSB0aGlz +``` + +#### r - Raw + +No decoding occurs + +The following results in the text `copy%20this` being placed upon the clipboard: +``` +https://example.com?r=copy this +``` + diff --git a/httpd.conf b/httpd.conf new file mode 100644 index 0000000..2deb66f --- /dev/null +++ b/httpd.conf @@ -0,0 +1,2 @@ +I:index.html +E404:index.html \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..4af4841 --- /dev/null +++ b/index.html @@ -0,0 +1,59 @@ + + + + + + Clipboard Applier + + + + + + +

+ + \ No newline at end of file