This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN RSA PRIVATE KEY----- | |
WW91IHRhbGsgc28gbXVjaCBhYm91dCBwcm9ncmFtbWluZywgYnV0IHlvdSBjYW50 | |
IHRhbGsgYWJvdXQgaGFja2luZyBiZWNhdXNlIHlvdSBjYW50IGFjdHVhbGx5IGRv | |
IGFueXRoaW5nLiBJIHJ1biBhIGhhY2tlZCBuZXR3b3JrIG9mIGNvbXB1dGVycyB0 | |
aGF0IEkgcHJvZ3JhbW1lZCB0byBjbGljayBvbiBnb29nbGVzIGFkcyBpbiBteSBz | |
ZWNyZXQgd2Vic2l0ZS4gSSBldmVuIHdyaXRlIG15IG93biB2aXJ1c2VzIHRvIG1h | |
a2UgcGVvcGxlIGdldCBoYWNrZWQgaW50byBteSBuZXR3b3JrLiBJIHdvcmsgYXQg | |
aG9tZSBhbmQgaGF2ZSBhIGJ1bmNoIG9mIHNjcmVlbnMgc2hvd2luZyBtZSB3aGF0 | |
IHBlb3BsZSBvbiBteSBuZXR3b3JrIGFyZSBkb2luZyBvbiB0aGVpciBzY3JlZW5z | |
LiBJIGNhbiBldmVuIHNldCBpdCBzbyB0aGF0IGkgY2FuIHNlZSB0aGUgY29kZSBv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private-Key: (4096 bit) | |
modulus: | |
00:f0:71:c0:a3:bb:5f:cc:63:f9:55:33:ed:a3:d0: | |
78:ae:fc:ce:2e:f2:36:d1:e5:cb:64:d7:55:37:8b: | |
7b:a0:60:5e:31:c3:2a:b3:6e:1f:33:89:0a:ba:f5: | |
ab:48:0e:0d:f7:39:31:06:18:3d:66:d8:b9:0e:ba: | |
bb:08:46:78:3a:51:4b:61:d7:0a:9d:46:54:72:94: | |
71:b6:a7:82:58:5b:6d:96:11:ae:f7:d2:19:f2:b1: | |
20:e7:00:72:df:15:ac:1f:1e:1e:34:04:fc:0b:63: | |
b5:03:ff:47:34:27:c7:54:4e:ee:d7:c7:77:cd:1d: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
func cors(h http.Handler) http.Handler { | |
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | |
w.Header().Set("Access-Control-Allow-Methods", "DELETE") | |
h(w, r) | |
}) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
command -v gpg2 >/dev/null 2>&1 || { echo >&2 "gpg2 must be installed"; exit 1; } | |
echo "This script is designed for generating a GPG environment on a USB key." | |
set -e | |
echo -e "Enter the path to your USB storage device, ^c to exit...\n" | |
read -r target | |
echo -e "\n" | |
echo -e "Enter your full name...\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>buffalo nas shutdown</title> | |
</head> | |
<body> | |
<iframe id="iframe" sandbox="allow-same-origin" style="display: none"></iframe> | |
<div id="output"></div> | |
<script> | |
var output = document.getElementById("output"); | |
//stolen from https://github.com/diafygi/webrtc-ips |