This commit is contained in:
BradBot_1 2024-01-28 20:23:27 +00:00
commit c9608fc107
6 changed files with 122 additions and 0 deletions

5
.dockerignore Normal file
View file

@ -0,0 +1,5 @@
Dockerfile
.dockerignore
LICENSE
README.md
.git/

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM lipanski/docker-static-website:latest
COPY . .

9
LICENSE Normal file
View file

@ -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.

44
README.md Normal file
View file

@ -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
```

2
httpd.conf Normal file
View file

@ -0,0 +1,2 @@
I:index.html
E404:index.html

59
index.html Normal file
View file

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clipboard Applier</title>
<script>
// raw params without leading '?'
const raw = window.location.search.substring(1);
var toApply;
if (raw.startsWith('u=')) toApply = decodeURI(raw.substring(2));
if (raw.startsWith('b=')) toApply = atob(raw.substring(2));
if (raw.startsWith('r=')) toApply = raw.substring(2);
window.onload = async () => {
document.getElementById('fallback').textContent = toApply;
if (!navigator.clipboard) {
console.error('Clipboard API is not available');
document.getElementById('failure').style.display = 'block';
document.getElementById('failapiavailable').style.display = 'block';
} else {
try {
await navigator.clipboard.writeText(toApply);
console.log('Applied value to clipboard sucessfully!');
document.getElementById('success').style.display = 'block';
window.top.close();
window.close();
} catch (e) {
console.error('Clipboard API permissions denied');
console.error(e);
document.getElementById('failure').style.display = 'block';
document.getElementById('failpermission').style.display = 'block';
}
}
}
</script>
</head>
<body>
<noscript style="text-align: center;">
<h1>Oh no!</h1>
<p>This page requires javascript in order to apply a value to your clipboard.</p>
<p>Please enable Javascript to continue.</p>
</noscript>
<div id="success" style="display: none; text-align: center;">
<h1>Success!</h1>
<p>You can now close this page or view the copied text below:</p>
</div>
<div id="failure" style="display: none; text-align: center;">
<h1>Oh no!</h1>
<p id="failapiavailable" style="display: none;">
Your browser does not support the JavaScript Clipboard API, this means that we are unable to apply the requested text to your clipboard.
</p>
<p id="failpermission" style="display: none;">
To apply the value to your clipboard we need access to the JavaScript Clipboard API, please provide the adequate permissions or copy from the textbox below.
</p>
<p>You can still copy the text below:</p>
</div>
<p id="fallback" style="text-align: center; border: 1px solid black; margin: 5px; padding: 2.5px 0;"></p>
</body>
</html>