I hereby claim:
- I am xThunderbolt on github.
- I am thunderbolt (https://keybase.io/thunderbolt) on keybase.
- I have a public key whose fingerprint is 9B76 0D69 31FB 546C 74E0 9360 E80D 76FA 9C81 6DC2
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Fix Wikipedia's design "improvements" | |
| // @namespace http://wikipedia.org/ | |
| // @version 1.1 | |
| // @description https://www.mediawiki.org/wiki/Talk:Reading/Web/Desktop_Improvements | |
| // @author Thunderbolt/EverfreeFaerie | |
| // @match https://*.wikipedia.org/* | |
| // @match https://*.mediawiki.org/* | |
| // @match https://*.wikimedia.org/* | |
| // @icon https://en.wikipedia.org/static/apple-touch/wikipedia.png |
| #!/bin/bash | |
| SCRIPTDIR=$(realpath $(dirname $0)) | |
| TMPDIR=$(mktemp -d) | |
| cd "$TMPDIR" | |
| echo "$TMPDIR" | |
| unzip -q /usr/lib/firefox/browser/omni.ja |
| // ==UserScript== | |
| // @name Twitter: Set custom font | |
| // @version 2 | |
| // @grant none | |
| // @include https://twitter.com/* | |
| // @include https://*.twitter.com/* | |
| // ==/UserScript== | |
| /* Change the font name in the apostrophes in the line below to your liking. */ | |
| var font = 'Courier New'; |
| // ==UserScript== | |
| // @name Twitter: Rectangular avatars | |
| // @include http://twitter.com/* | |
| // @include https://twitter.com/* | |
| // @include http://tweetdeck.twitter.com/* | |
| // @include https://tweetdeck.twitter.com/* | |
| // ==/UserScript== | |
| function addGlobalStyle(css) { | |
| var head, style; |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>XSS-Example</title> | |
| </head> | |
| <body> | |
| <?php if(isset($_GET['text'])) { ?> | |
| <p>You typed: <?php echo $_GET['text']; ?></p> | |
| <?php } ?> | |
| <form> |
| <?php | |
| echo 'Works.'; |